MKDIR = mkdir -p CP = cp CONFROOT = $(prefix)/ all: # nothing to make... all the work is done in install clean: install: all $(MKDIR) $(CONFROOT) $(CP) -r root/* $(CONFROOT) # clean out the cruft which shold not be there.. rm -rf `find $(CONFROOT) -name '*~'`