Having LDADD and LDFLAGS organized on Makefile.am

This commit is contained in:
Felipe Zimmerle
2018-02-21 14:24:21 -03:00
parent 2b052b0edb
commit ff782ddfa4
9 changed files with 162 additions and 90 deletions

View File

@@ -6,13 +6,17 @@ test_SOURCES = \
test.c
test_LDADD = \
$(GLOBAL_LDADD) \
$(LUA_LDADD) \
$(SSDEEP_LDADD)
test_LDFLAGS = \
-L$(top_builddir)/src/.libs/ \
-lmodsecurity \
$(YAJL_LDFLAGS) \
$(GEOIP_LDFLAGS) \
$(SSDEEP_LDFLAGS) $(SSDEEP_LDADD) \
$(LUA_LDFLAGS) $(LUA_LDADD) \
$(GLOBAL_LDADD)
-lmodsecurity \
$(LUA_LDFLAGS) \
$(SSDEEP_LDFLAGS) \
$(YAJL_LDFLAGS)
test_CFLAGS = \
-I$(top_builddir)/headers \