2015-02-08 00:17:40 +01:00
|
|
|
# This Makefile.am is in the public domain
|
2015-01-08 18:37:20 +01:00
|
|
|
AM_CPPFLAGS = -I$(top_srcdir)/src/include
|
2017-06-04 10:22:11 +02:00
|
|
|
|
|
|
|
if DOC_ONLY
|
2017-10-24 15:37:46 +02:00
|
|
|
if ENABLE_DOC
|
2017-06-04 10:22:11 +02:00
|
|
|
SUBDIRS = . doc
|
|
|
|
else
|
2017-10-24 15:37:46 +02:00
|
|
|
SUBDIRS = .
|
|
|
|
endif
|
|
|
|
else
|
|
|
|
if ENABLE_DOC
|
2017-06-04 10:22:11 +02:00
|
|
|
SUBDIRS = . src doc
|
2017-10-24 15:37:46 +02:00
|
|
|
else
|
|
|
|
SUBDIRS = . src doc
|
|
|
|
endif
|
2017-06-04 10:22:11 +02:00
|
|
|
endif
|
|
|
|
|
|
|
|
@DX_RULES@
|
|
|
|
|
2015-01-08 18:37:20 +01:00
|
|
|
ACLOCAL_AMFLAGS = -I m4
|
2016-05-05 17:40:38 +02:00
|
|
|
EXTRA_DIST = \
|
|
|
|
AUTHORS \
|
2017-06-04 10:22:11 +02:00
|
|
|
contrib/coverage.sh \
|
2017-06-04 12:07:53 +02:00
|
|
|
contrib/gnunet.tag \
|
|
|
|
contrib/microhttpd.tag \
|
2017-06-04 10:22:11 +02:00
|
|
|
Doxyfile
|
2016-03-17 16:14:28 +01:00
|
|
|
|
|
|
|
app:
|
|
|
|
mkdir -p $(PACKAGE)-$(VERSION)-app
|
|
|
|
tar cf - configure.ac AUTHORS README doc/*.1 doc/*.5 doc/Makefile.am Makefile.am `find src/ -name "*.c" -o -name "*.h" -o -name Makefile.am` | (cd $(PACKAGE)-$(VERSION)-app ; tar xf -)
|
|
|
|
tar cf $(PACKAGE)-$(VERSION)-app.tgz $(PACKAGE)-$(VERSION)-app
|
|
|
|
rm -rf $(PACKAGE)-$(VERSION)-app
|