X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=ETL%2Ftrunk%2FMakefile.am;fp=ETL%2Ftrunk%2FMakefile.am;h=0000000000000000000000000000000000000000;hb=a095981e18cc37a8ecc7cd237cc22b9c10329264;hp=48447b7b030bf06f2a3d7d0b1f9a88aa62ffba3a;hpb=9459638ad6797b8139f1e9f0715c96076dbf0890;p=synfig.git diff --git a/ETL/trunk/Makefile.am b/ETL/trunk/Makefile.am deleted file mode 100644 index 48447b7..0000000 --- a/ETL/trunk/Makefile.am +++ /dev/null @@ -1,116 +0,0 @@ -# $Id$ - -MAINTAINERCLEANFILES = \ - COPYING \ - INSTALL \ - 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 \ - include/etl_profile.h.in \ - doxygen.cfg - - -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 -ACLOCAL_AMFLAGS = -I m4 - -EXTRA_DIST = \ - COPYING \ - m4/subs.m4 \ - config/depcomp \ - m4/cxx_macros.m4 \ - ETL.pbproj/project.pbxproj \ - ETL.pbproj/etl_profile.h \ - ETL.pbproj/frameworkfix.cpp \ - ETL-config.in \ - m4/ETL.m4 \ - doxygen.cfg.in \ - doxygen.cfg \ - ETL.pc.in - - -SVN=svn -TAG=@PACKAGE_TARNAME@_@VERSION_MAJ@_@VERSION_MIN@_@VERSION_REV@ - -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: - -$(SVN) delete $(SVN_REPOSITORY)/tags/stable -m "Stable Tag: Removing old tag" - $(SVN) copy $(top_srcdir) $(SVN_REPOSITORY)/tags/stable -m "Stable Tag: Copying everything over" - -tagrelease: - $(SVN) copy $(top_srcdir) $(SVN_REPOSITORY)/tags/$(TAG) -m "Release $(TAG)" - -ChangeLog: - -svn update - svn2cl --include-rev || touch ChangeLog - -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 - -.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