1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
|
## useful flags
AM_CFLAGS = -g -Wall -Wsign-compare -Wno-long-long -Werror -ansi @CFLAGS@ -I..
## @APPLE_CFLAGS@
includedir = @includedir@/rra
include_HEADERS = \
appointment.h \
contact.h \
matchmaker.h \
syncmgr.h \
timezone.h \
task.h \
uint32vector.h
## create this library
lib_LTLIBRARIES = librra.la
## use these sources
librra_la_SOURCES = \
appointment.h appointment.c \
dbstream.h dbstream.c \
common_handlers.h common_handlers.c \
contact.h contact.c \
environment.h environment.c \
generator.h generator.c \
parser.h parser.c \
recurrence.h recurrence.c \
recurrence_pattern.h recurrence_pattern.c \
matchmaker.h matchmaker.c \
mdir_line_vector.h mdir_line_vector.c \
rrac.h rrac.c \
strbuf.h strbuf.c \
strv.h strv.c \
syncmgr.h syncmgr.c \
task.h task.c \
timezone.h timezone.c \
uint32vector.h uint32vector.c
librra_la_LDFLAGS = -no-undefined -version-info 0:0:0
librra_la_LIBADD = @LTLIBOBJS@
|