X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=Usermode%2FFilesystem%2FMakefile;h=410a01b5d255fbd01e600a3b0359145d890c5695;hb=f5406db5ab5adcf2aa6ee5f5d2560aef9df8c83e;hp=b9b85f06b63b8f65b48282734c28d9ae621428d8;hpb=c61713a1b9b042796794b8046d8b62e95a7e1264;p=tpg%2Facess2.git diff --git a/Usermode/Filesystem/Makefile b/Usermode/Filesystem/Makefile index b9b85f06..410a01b5 100644 --- a/Usermode/Filesystem/Makefile +++ b/Usermode/Filesystem/Makefile @@ -3,23 +3,25 @@ -include ../../Makefile.cfg -DIRS = Bin SBin Libs Modules Applications +DIRS = Bin SBin Libs Modules Apps DIRS += Conf Conf/Auth -FILES = Conf/BootConf.cfg Conf/Auth/Users Conf/Auth/Passwords Conf/Auth/Groups +FILES = Conf/BootConf.cfg +# Conf/Auth/Users Conf/Auth/Passwords Conf/Auth/Groups #DIRS := $(addprefix $(DISTROOT)/,$(DIRS)) #FILES := $(addprefix $(DISTROOT)/,$(FILES)) .PHONY: all clean +.PHONY: $(DIRS) $(FILES) -all: $(DIRS) $(FILES) +install: $(DIRS) $(FILES) clean: $(DIRS): - $(xMKDIR) $(DISTROOT)/$@ + $(xMKDIR) $(DISTROOT)/$@; true $(FILES): - $(xCP) $< $(DISTROOT)/$@ + $(xCP) $@ $(DISTROOT)/$@ force: ;