exchange/Makefile.am

33 lines
710 B
Makefile
Raw Normal View History

# This Makefile.am is in the public domain
2015-01-08 18:37:20 +01:00
AM_CPPFLAGS = -I$(top_srcdir)/src/include
if DOC_ONLY
2017-10-24 15:37:46 +02:00
if ENABLE_DOC
SUBDIRS = . doc
else
2017-10-24 15:37:46 +02:00
SUBDIRS = .
endif
else
if ENABLE_DOC
SUBDIRS = . src doc
2017-10-24 15:37:46 +02:00
else
SUBDIRS = . src doc
endif
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 \
contrib/coverage.sh \
2017-06-04 12:07:53 +02:00
contrib/gnunet.tag \
contrib/microhttpd.tag \
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