# # ant tasks in generated build.xmls: # clean -- clean the output (target) directory # compile -- compile code in src/main # compile-tests -- compile test code # get-deps -- download all dependencies # jar -- generate a jar # test -- run test cases # # bin_SCRIPTS = \ etc/cipres.sh # Compile the entire package. This is the default target in # Automake-generated Makefiles, but it does not need to be the default # in third-party Makefiles. all: @ant jar # Copy files to distribute into $(distdir), before a tarball is # constructed. Of course this target is not required if the no-dist # option (see Options) is used. #The variables $(top_distdir) and # $(distdir) (see Dist) will be passed from the outer package to the # subpackage when the distdir target is invoked. These two variables # have been adjusted for the directory that is being recursed into, so # they are ready to use. EXTRA_DIST = \ src \ test \ build.xml \ etc/cipres.sh dist-hook: @rm -rf `find $(distdir)/src -name .svn -type d` @rm -rf `find $(distdir)/test -name .svn -type d` # Install or uninstall files # see http://sources.redhat.com/automake/automake.html#Install install-exec-hook: @ant install # @ant install -Dcipres.destdir=$(DESTDIR) -Dcipres.prefix=${prefix} -Dcipres.libdir=${pkglibdir} -Dcipres.datadir=${pkgdatadir} uninstall-hook: @ant uninstall # @ant uninstall -Dcipres.destdir=$(DESTDIR) -Dcipres.prefix=${prefix} -Dcipres.libdir=${pkglibdir} -Dcipres.datadir=${pkgdatadir} # Install only tex-info files # See http://sources.redhat.com/automake/automake.html#Texinfo install-info: @echo The install-info target is not implemented. # Create install dirs, but don't install any files installdirs: @echo The installdirs target is not implemented. # Check (test) the package # See http://sources.redhat.com/automake/automake.html#Tests check: @ant test installcheck-local: @ant install-check mostlyclean: @echo The mostlyclean target is not implemented. clean: @ant clean distclean: @echo The distclean target is not implemented. maintainer-clean: @echo The maintainer-clean target is not implemented. dvi: @echo The dvi target is not implemented. pdf: @echo The pdf target is not implemented. ps: @echo The ps target is not implemented. info: @echo The info target is not implemented html: @ant javadoc tags: @echo The tags target is not implemented. ctags: @echo The ctags target is not implemented.