1*5f4c09ddSEd Maste# 2*5f4c09ddSEd MasteACLOCAL_AMFLAGS = -I m4 3*5f4c09ddSEd Mastelib_LTLIBRARIES = libblacklist.la 4*5f4c09ddSEd Masteinclude_HEADERS = ../include/blacklist.h 5*5f4c09ddSEd Maste 6*5f4c09ddSEd Mastebin_PROGRAMS = blacklistd blacklistctl srvtest cltest 7*5f4c09ddSEd Maste 8*5f4c09ddSEd MasteVPATH = ../bin:../lib:../test:../include 9*5f4c09ddSEd Maste 10*5f4c09ddSEd MasteAM_CPPFLAGS = -I../include -DDOT="." 11*5f4c09ddSEd MasteAM_CFLAGS = @WARNINGS@ 12*5f4c09ddSEd Maste 13*5f4c09ddSEd Mastelibblacklist_la_SOURCES = bl.c blacklist.c 14*5f4c09ddSEd Mastelibblacklist_la_LDFLAGS = -no-undefined -version-info 0:0:0 15*5f4c09ddSEd Mastelibblacklist_la_LIBADD = $(LTLIBOBJS) 16*5f4c09ddSEd Maste 17*5f4c09ddSEd MasteSRCS = internal.c support.c run.c conf.c state.c 18*5f4c09ddSEd Masteblacklistd_SOURCES = blacklistd.c ${SRCS} 19*5f4c09ddSEd Masteblacklistd_LDADD = libblacklist.la 20*5f4c09ddSEd Masteblacklistctl_SOURCES = blacklistctl.c ${SRCS} 21*5f4c09ddSEd Masteblacklistctl_LDADD = libblacklist.la 22*5f4c09ddSEd Mastesrvtest_SOURCES = srvtest.c ${SRCS} 23*5f4c09ddSEd Mastesrvtest_LDADD = libblacklist.la 24*5f4c09ddSEd Mastecltest_SOURCES = cltest.c ${SRCS} 25*5f4c09ddSEd Mastecltest_LDADD = libblacklist.la 26