]> git.draconx.ca Git - dxcommon.git/blob - Makefile.am
Add common option formatting routines.
[dxcommon.git] / Makefile.am
1 # Copyright © 2015 Nick Bowler
2 #
3 # License WTFPL2: Do What The Fuck You Want To Public License, version 2.
4 # This is free software: you are free to do what the fuck you want to.
5 # There is NO WARRANTY, to the extent permitted by law.
6
7 ACLOCAL_AMFLAGS = -I m4
8
9 AM_CFLAGS = -I$(top_srcdir)/src
10
11 check_LIBRARIES = t/libdummy.a
12
13 check_PROGRAMS = t/packtestu t/packtests t/packtestu64 t/packtests64
14
15 t_packtestu_SOURCES = t/packtestu.c src/pack.c src/tap.c
16 t_packtests_SOURCES = t/packtests.c src/pack.c src/tap.c
17 t_packtestu64_SOURCES = t/packtestu64.c src/pack.c src/tap.c
18 t_packtests64_SOURCES = t/packtests64.c src/pack.c src/tap.c
19
20 if HAVE_STRUCT_OPTION
21 check_PROGRAMS += t/helpdesc t/helpopt
22 endif
23
24 t_helpopt_SOURCES = t/helpopt.c src/help.c src/tap.c
25 t_helpdesc_SOURCES = t/helpdesc.c src/help.c src/tap.c
26
27 DISTCLEANFILES =
28 EXTRA_DIST =
29 SUFFIXES =
30
31 include $(top_srcdir)/snippet/autotest.mk