1 AM_CPPFLAGS = -I$(top_srcdir)/src -DSYSCONFDIR=\"$(sysconfdir)\" -DDATADIR=\"$(datadir)/GeoIP\" \ 2 -std=c99 -Wall -Wextra 3 4 bin_PROGRAMS = geoipupdate 5 6 geoipupdate_SOURCES = \ 7 geoipupdate.c geoipupdate.h \ 8 md5.c md5.h \ 9 geoipupdate_s.c \ 10 edition_s.c \ 11 types.h \ 12 functions.c functions.h 13 geoipupdate_LDFLAGS = 14 geoipupdate_LDADD = 15 16 TESTS = functions_test 17 18 check_PROGRAMS = functions_test 19 20 functions_test_SOURCES = functions.c 21 functions_test_CPPFLAGS = $(AM_CPPFLAGS) -DTEST_FUNCTIONS