15 lines
299 B
Makefile
15 lines
299 B
Makefile
AM_CPPFLAGS = -I$(top_srcdir)/include $(CRITERION_CFLAGS)
|
|
AM_CFLAGS = -std=c99
|
|
|
|
check_PROGRAMS = test_cli
|
|
|
|
test_cli_SOURCES = \
|
|
test_main.c \
|
|
parse_utils/test_parse_int.c \
|
|
parse_utils/test_parse_float.c
|
|
|
|
test_cli_LDADD = \
|
|
$(top_builddir)/src/libcli.la \
|
|
$(CRITERION_LIBS)
|
|
|
|
TESTS = test_cli
|