X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=Usermode%2FFilesystem%2FMakefile;h=4cf24a37adcf548b69205bbe10a48f89c4f08b22;hb=d9aa13b78d35a9460c5ea1ab260ae3470a551607;hp=b9b85f06b63b8f65b48282734c28d9ae621428d8;hpb=c61713a1b9b042796794b8046d8b62e95a7e1264;p=tpg%2Facess2.git diff --git a/Usermode/Filesystem/Makefile b/Usermode/Filesystem/Makefile index b9b85f06..4cf24a37 100644 --- a/Usermode/Filesystem/Makefile +++ b/Usermode/Filesystem/Makefile @@ -3,16 +3,18 @@ -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: @@ -20,6 +22,6 @@ $(DIRS): $(xMKDIR) $(DISTROOT)/$@ $(FILES): - $(xCP) $< $(DISTROOT)/$@ + $(xCP) $@ $(DISTROOT)/$@ force: ;