## ## File : Makefile.am ## Author : Robert Chalmers ## ## Original : October 13, 1999 ## Revised : February 26, 2000 ## ## Content : Project Makefile template used my automake. ## This provides targets to build the project ## documentation. ## ## Building the documentation can be an expensive process, ## so it is disabled by default during configuration. ## ## Any README* files added to the doc directory ## will automatically be added to the distribution. ## EXTRA_DIST = $(doc_files) mob.ps SUBDIRS = tex # setup files to be installed as data pdoc_DATA = $(doc_files) doc_files := $(notdir $(wildcard $(srcdir)/README*)) all-local: mob.ps if P_LATEX_COND # provide means for producing postscript file mob.ps: $(MAKE) dist-ps -C tex else # empty postscript target mob.ps: endif maintainer-clean-local: $(RM) mob.ps