libbsd/test/Makefile.am

30 lines
640 B
Makefile
Raw Normal View History

2012-03-23 10:43:33 +01:00
## Process this file with automake to produce Makefile.in
AM_CPPFLAGS = \
-I$(top_builddir) \
-isystem $(top_srcdir)/include/bsd/ \
-include $(top_builddir)/config.h \
-DLIBBSD_OVERLAY -DLIBBSD_DISABLE_DEPRECATED \
-D__REENTRANT
check_PROGRAMS = \
2012-03-24 20:37:55 +01:00
headers \
2012-03-24 20:37:55 +01:00
overlay \
endian \
2013-05-26 04:34:57 +02:00
humanize \
fgetln \
funopen \
2012-11-27 14:23:26 +01:00
proctitle \
2012-03-23 10:43:33 +01:00
$(nil)
2013-05-26 04:34:57 +02:00
humanize_LDFLAGS = $(top_builddir)/src/libbsd.la
fgetln_LDFLAGS = $(top_builddir)/src/libbsd.la
funopen_LDFLAGS = $(top_builddir)/src/libbsd.la
proctitle_LDFLAGS = \
-Wl,-u,libbsd_init_func \
$(top_builddir)/src/libbsd-ctor.a \
$(top_builddir)/src/libbsd.la \
$(nil)
2012-03-23 10:43:33 +01:00
TESTS = $(check_PROGRAMS)