# File: ./src/Makefile.am # Package: * # Description: # + source-level automake file # # Process this file with Automake to create Makefile.in. #----------------------------------------------------------------------- #----------------------------------------------------------------------- # Options & Subdirectories #----------------------------------------------------------------------- ## --- recursion subdirectories #SUBDIRS = libgfsm programs SUBDIRS = libgfsm $(GFSM_SRC_SUBDIRS) #----------------------------------------------------------------------- # Variables: cleanup #----------------------------------------------------------------------- ## --- mostlyclean: built by 'make' & commonly rebuilt #MOSTLYCLEANFILES = ## --- clean: built by 'make' #CLEANFILES = ## --- distclean: built by 'configure' DISTCLEANFILES = \ autom4te.cache \ config.log \ config.status \ config.cache ## -- maintainerclean: built by maintainer / by hand MAINTAINERCLEANFILES = *~ \ $(PODS:.pod=.txt) \ Makefile Makefile.in \ aclocal.m4 \ configure #----------------------------------------------------------------------- # Variables: distribution #----------------------------------------------------------------------- ## --- extra distribution files #EXTRA_DIST = ## --- recursion subdirectories for 'make dist' DIST_SUBDIRS = $(SUBDIRS) ## --- dist-hook: when another 'Makefile.am' is overkill #DISTHOOK_DIRS = subdir #DISTHOOK_FILES = subdir/file1 subdir/file2 # #dist-hook: # for d in $(DISTHOOK_DIRS); do\ # mkdir -p $(distdir)/$$d ;\ # done # for f in $(DISTHOOK_FILES); do\ # cp -p $(srcdir)/$$f $(distdir)/$$f ;\ # done #----------------------------------------------------------------------- # Rules: cleanup #----------------------------------------------------------------------- .PHONY: cvsclean cvsclean-hook cvsclean: maintainer-clean ;