X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=Usermode%2FFilesystem%2FMakefile;h=a49d887d03836bf71e307568151f82fab74d9063;hb=b52f69bd4a5299bd990b9153dc80da5c898864c7;hp=ef1f6b2b62fec8b72e381a39f8542817f3d08811;hpb=4c846dc6c5b4e8bc39f1ecc3370db690400b40e2;p=tpg%2Facess2.git diff --git a/Usermode/Filesystem/Makefile b/Usermode/Filesystem/Makefile index ef1f6b2b..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: - $(xRMDIR) $(DIRS) - $(xRM) $(FILES) + +DISTROOT: + $(xMKDIR) $(DISTROOT); true $(DIRS): - $(xMKDIR) $(DISTROOT)/$@ + $(xMKDIR) $(DISTROOT)/$@; true $(FILES): - $(xCP) $< $(DISTROOT)/$@ + $(xCP) $@ $(DISTROOT)/$@ + +force: ;