X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=ETL%2Ftrunk%2FMakefile.am;fp=ETL%2Ftrunk%2FMakefile.am;h=69d16907ae719f49ad5d6ba4515ef347a502dce1;hb=b3016b249333ac0ab0008d8c6c4d9029b2ff30c9;hp=0000000000000000000000000000000000000000;hpb=7f4273493da74d7d5746a65551e20c7786d0f155;p=synfig.git diff --git a/ETL/trunk/Makefile.am b/ETL/trunk/Makefile.am new file mode 100644 index 0000000..69d1690 --- /dev/null +++ b/ETL/trunk/Makefile.am @@ -0,0 +1,73 @@ +# $Header: /opt/voria/cvs/ETL/Makefile.am,v 1.1.1.1 2005/01/04 01:31:46 darco Exp $ + +MAINTAINERCLEANFILES=config/config.guess config/config.sub config/ltmain.sh config/install-sh config/mkinstalldirs config/aclocal.m4 config/missing config/texinfo.tex config/depcomp aclocal.m4 config.h.in configure stamp-h.in Makefile.in config.log config.status .doc_stamp .DS_Store @PACKAGE@-@VERSION@.spec include/etl_profile.h.in + +SUBDIRS=ETL test + +# Install the pkg-config file: +pkgconfigdir = $(libdir)/pkgconfig +pkgconfig_DATA = ETL.pc + +#Install the -config/m4 alternative to pkg-config: +bin_SCRIPTS=ETL-config +aclocaldir = $(prefix)/share/aclocal + + +EXTRA_DIST=bootstrap config/depcomp config/cxx_macros.m4 ETL.pbproj/project.pbxproj ETL.pbproj/etl_profile.h ETL.pbproj/frameworkfix.cpp @PACKAGE_TARNAME@-@VERSION@.spec config/project.spec.in config/build.cfg ETL.kdevproj ETL-config.in config/ETL.m4 config/doxygen.cfg.in doxygen.cfg config/pkgconfig.pc.in @PACKAGE_TARNAME@.pc.in + +CVS=cvs + +GREP=grep + +PRINTF=printf + +SH=sh + +DOXYGEN=doxygen + +stats: + -@echo + -@echo -- Stats + -@echo + -@$(PRINTF) "Total lines: " + -@wc -l $(shell find $(top_srcdir)/ETL -name '*.[ch]*') | $(GREP) total + -@$(PRINTF) "Total size: " + -@du -hcs $(shell find $(top_srcdir)/ETL -name '*.[ch]*') | $(GREP) total + -@echo + +tagstable: + $(CVS) tag -F stable + +tagrelease: + $(CVS) tag -F $(PACKAGE_TARNAME)_$(VERSION_MAJ)_$(VERSION_MIN)_$(VERSION_REV) + +listfixmes: + -@echo + -@echo -- List of pending FIXMEs + -@echo + -@$(GREP) FIXME -n $(shell find $(top_srcdir) -name '*.[ch]*') + -@echo + +listhacks: + -@echo + -@echo -- List of pending HACKs + -@echo + -@$(GREP) HACK -n $(shell find $(top_srcdir) -name '*.[ch]*') + -@echo + +run: check + +$(srcdir)/configure: $(srcdir)/configure.in $(ACLOCAL_M4) $(CONFIGURE_DEPENDENCIES) + $(srcdir)/bootstrap + +.doc_stamp: doxygen.cfg + $(DOXYGEN) doxygen.cfg + touch .doc_stamp + +html: .doc_stamp + +rtf: .doc_stamp + +docs: html + +.PHONY: stats tagstable tagrelease listfixmes listhacks check docs pdf html rtf