1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
|
## Process this file with automake to produce Makefile.in
SUBDIRS = src po data help
ACLOCAL_AMFLAGS = -I m4
EXTRA_DIST = $(gpdftextdoc_DATA) \
$(desktop_in_files) \
COPYING \
COPYING-DOCS \
po/$(PACKAGE).pot
README\
AUTHORS\
ChangeLog\
INSTALL\
NEWS
DISTCLEANFILES = intltool-extract \
intltool-merge \
intltool-update \
po/.intltool-merge-cache
all-local: Makefile
make -C po $(PACKAGE).pot
clean-local: Makefile
find . -name '*~' -delete
rm -f intltool-*.in
debiantarball: Makefile dist
ln $(PACKAGE)-$(VERSION).tar.gz $(PACKAGE)_$(VERSION).orig.tar.gz;
# Remove doc directory on uninstall
uninstall-local:
-rm -r $(gpdftextdocdir)
DISTCHECK_CONFIGURE_FLAGS = \
--disable-schemas-install \
--disable-desktop-update \
--disable-scrollkeeper
|