X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=Usermode%2FFilesystem%2FMakefile;h=a49d887d03836bf71e307568151f82fab74d9063;hb=af67042b8d7f05fe76583aef1afb2022b519a1aa;hp=b9b85f06b63b8f65b48282734c28d9ae621428d8;hpb=c61713a1b9b042796794b8046d8b62e95a7e1264;p=tpg%2Facess2.git diff --git a/Usermode/Filesystem/Makefile b/Usermode/Filesystem/Makefile index b9b85f06..a49d887d 100644 --- a/Usermode/Filesystem/Makefile +++ b/Usermode/Filesystem/Makefile @@ -1,25 +1,30 @@ # Acess 2 # - Usermode Filesystem Structure Generator --include ../../Makefile.cfg +-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/inittab +# Conf/Auth/Users Conf/Auth/Passwords Conf/Auth/Groups #DIRS := $(addprefix $(DISTROOT)/,$(DIRS)) #FILES := $(addprefix $(DISTROOT)/,$(FILES)) .PHONY: all clean +.PHONY: $(DIRS) $(FILES) DISTROOT -all: $(DIRS) $(FILES) +install: DISTROOT $(DIRS) $(FILES) clean: +DISTROOT: + $(xMKDIR) $(DISTROOT); true + $(DIRS): - $(xMKDIR) $(DISTROOT)/$@ + $(xMKDIR) $(DISTROOT)/$@; true $(FILES): - $(xCP) $< $(DISTROOT)/$@ + $(xCP) $@ $(DISTROOT)/$@ force: ;