diff options
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am new file mode 100644 index 000000000..6e5f0ee4a --- /dev/null +++ b/Makefile.am @@ -0,0 +1,37 @@ +## +## Process this file with automake to produce Makefile.in +## + +AUTOMAKE_OPTIONS = 1.3 + +SUBDIRS = doc m4 src misc include + +EXTRA_DIST = cvscompile + +noinst_HEADERS = config.h + + +debug: + list='$(SUBDIRS)'; for subdir in $$list; do \ + (cd $$subdir && $(MAKE) $@) \ + done; + + +prune-cache: + -rm -f config.cache + + +mostlyclean-generic: + -rm -f *~ \#* .*~ .\#* + -rm -f $(PACKAGE)_$(VERSION).tar.gz + -rm -f $(distdir).tar.gz $(PACKAGE).tgz package_descriptions + -rm -rf $(distdir) + + +maintainer-clean-generic: + -@echo "This command is intended for maintainers to use;" + -@echo "it deletes files that may require special tools to rebuild." + -rm -f Makefile.in configure acinclude.m4 aclocal.m4 + -rm -f config.h.in stamp-h.in ltconfig ltmain.sh + -rm -f config.guess config.sub install-sh missing mkinstalldirs + -rm -f libtool-nofpic |