diff options
author | Dave Reisner <dreisner@archlinux.org> | 2014-11-16 14:13:13 -0500 |
---|---|---|
committer | Dave Reisner <dreisner@archlinux.org> | 2014-11-16 14:25:49 -0500 |
commit | 684aca4e01efdd3337720c4b9139c2c74d935aa8 (patch) | |
tree | 5b557116740d5f2ea414b560d65017d261709129 /Makefile | |
parent | 7a7340505092c3b61d9a084a11f6ac895481c593 (diff) | |
download | expac-684aca4e01efdd3337720c4b9139c2c74d935aa8.tar.xz |
make the config parser suck less
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -6,8 +6,8 @@ PREFIX ?= /usr/local MANPREFIX ?= $(PREFIX)/share/man # compiler flags -CPPFLAGS := -DVERSION=\"$(VERSION)\" $(CPPFLAGS) -CFLAGS := -std=c99 -g -pedantic -Wall -Wextra $(CFLAGS) +CPPFLAGS := -DVERSION=\"$(VERSION)\" -D_GNU_SOURCE $(CPPFLAGS) +CFLAGS := -std=c11 -g -pedantic -Wall -Wextra -Wno-missing-field-initializers $(CFLAGS) LDLIBS = -lalpm DISTFILES = expac.c README.pod |