1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
|
pkgdata_DATA = \
cf.chflags.example \
cf.freebsd.example \
cf.ftp.example \
cf.groups.example \
cf.linux.example \
cf.main.example \
cf.motd.example \
cf.services.example \
cf.site.example \
cf.solaris.example \
cf.sun4.example \
cf.users.example \
cfservd.conf.example \
cfagent.conf.example \
cfagent.conf-advanced.example \
update.conf.example \
cfrc.example \
cfrun.hosts.example
pkgdata_SCRIPTS = \
cf.preconf.example
EXTRA_DIST = $(pkgdata_DATA) $(pkgdata_SCRIPTS)
#
# Some basic clean ups
#
MOSTLYCLEANFILES = *~
#
# Get everything removed down to where rebuilding requires:
# "make; make install"
#
CLEANFILES =
#
# Get everything removed down to where rebuilding requires:
# "configure; make; make install"
#
DISTCLEANFILES =
#
# Get everything removed down to where rebuilding requires:
# "aclocal; autoconf; autoheader; automake --add-missing"
# "configure; make; make install"
#
MAINTAINERCLEANFILES = Makefile.in
|