test-autotools-shared/Makefile.am
Ruben Laguna 9e4435791e Fix the glib-2.0 DEPS
There is no product_LIBS is product_LDADD
2015-02-06 17:51:56 +01:00

18 lines
519 B
Makefile

AM_CFLAGS = # CFLAGS applicable to all executables (products)
bin_PROGRAMS = myexecutable
myexecutable_SOURCES = \
src/main.c
myexecutable_CFLAGS = #--std=c11 # CFLAGS applicable to myexecutable_SOURCES
# Tests
# 'check' comes from 'make check'
check_PROGRAMS = testsuite # will generate and run testsuite exec
testsuite_CFLAGS = $(DEPS_CFLAGS) # DEPS_* are filled by PKG_CHECK_MODULES
testsuite_LDADD = $(DEPS_LIBS) # in configure.ac
testsuite_SOURCES = tests/test.c
TESTS = testsuite