X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=Usermode%2FFilesystem%2FMakefile;h=a49d887d03836bf71e307568151f82fab74d9063;hb=c30a10bc7b7c60aeec0fc02ac6af259b01f33764;hp=093ea71a6e6f9ec978d0098f0d112e71dd51de91;hpb=c7c5c4dbeb7b298675856eebb36084c92e989d98;p=tpg%2Facess2.git diff --git a/Usermode/Filesystem/Makefile b/Usermode/Filesystem/Makefile index 093ea71a..a49d887d 100644 --- a/Usermode/Filesystem/Makefile +++ b/Usermode/Filesystem/Makefile @@ -1,27 +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: ;