Files
calcurse-edge/src/Makefile.am
Lukas Fleischer 7c91248629 {src,test}/Makefile.am: Enable pedantic warnings
Now that we're fully POSIX compliant and fixed up some minor issues with
ISO C99, use "-std=c99 -pedantic -D_POSIX_C_SOURCE=200809L" as default
build flags for calcurse and the test suite.

Signed-off-by: Lukas Fleischer <calcurse@cryptocrack.de>
2012-02-19 03:23:26 +01:00

47 lines
598 B
Makefile

AUTOMAKE_OPTIONS = foreign
bin_PROGRAMS = calcurse
AM_CFLAGS = -std=c99 -pedantic -D_POSIX_C_SOURCE=200809L
calcurse_SOURCES = \
calcurse.c \
calcurse.h \
htable.h \
llist.h \
llist_ts.h \
sha1.h \
apoint.c \
args.c \
calendar.c \
config.c \
custom.c \
day.c \
event.c \
getstring.c \
help.c \
ical.c \
io.c \
keys.c \
llist.c \
note.c \
notify.c \
pcal.c \
recur.c \
sha1.c \
sigs.c \
todo.c \
utf8.c \
utils.c \
vars.c \
wins.c \
mem.c \
dmon.c
LDADD = @LTLIBINTL@
datadir = @datadir@
localedir = $(datadir)/locale
DEFS = -DLOCALEDIR=\"$(localedir)\" @DEFS@