1 AUTOMAKE_OPTIONS = foreign 1.11 no-dist-gzip dist-bzip2 subdir-objects
2 ACLOCAL_AMFLAGS = -I m4
4 INCLUDES = -I$(top_srcdir)/include -I. -I$(top_srcdir)/halloc
5 AM_CFLAGS = -ansi -pedantic -Wall -Wextra -Wno-long-long -O0 -g
10 AUTHORS README LICENSE \
11 nestegg-uninstalled.pc.in \
14 m4/ax_create_stdint_h.m4 \
21 pkgconfigdir = $(libdir)/pkgconfig
22 pkgconfig_DATA = nestegg.pc
24 nesteggincludedir = $(includedir)/nestegg
25 nestegginclude_HEADERS = include/nestegg/nestegg.h include/nestegg/nestegg-stdint.h
27 lib_LTLIBRARIES = src/libnestegg.la
29 src_libnestegg_la_SOURCES = \
37 check_PROGRAMS = test/test
39 test_test_SOURCES = test/test.c
40 test_test_LDADD = src/libnestegg.la
42 DISTCLEANFILES = include/nestegg/nestegg-stdint.h
45 find $(distdir) -type d -name '.git' | xargs rm -rf
48 $(MAKE) all CFLAGS="@DEBUG@"
51 $(MAKE) all CFLAGS="@PROFILE@"