#
# Dummy $(MAKE)file for cfengine
#

all:
	(cd $(MASTERDIR)/pub; $(MAKE) all)
	(cd $(MASTERDIR)/src; $(MAKE))

# Uncomment this if you want to make the documentation
# You do not *need* to do this, since the postscript file
# is included, unless you want info etc
#	(cd $(MASTERDIR)/doc; $(MAKE))

install:
	(cd $(MASTERDIR)/src; $(MAKE) install)

uninstall:
	(cd $(MASTERDIR)/src; $(MAKE) uninstall)
dist:
	(cd $(MASTERDIR)/src; $(MAKE) dist)
doc:
	(cd $(MASTERDIR)/doc; $(MAKE) doc)
tidy:
	(cd $(MASTERDIR)/src; $(MAKE) tidy)

distclean:
	(cd $(MASTERDIR)/src; $(MAKE) distclean)

