Renaming package to ShadowArch to follow /wiki/Design_Principles; improved packing; development sync to current state -- massive overhaul
This commit is contained in:
8
Makefile
8
Makefile
@@ -1,4 +1,4 @@
|
||||
LIST=Admin Shared ShadowArch
|
||||
LIST=AdminScripts UserScripts EtcFiles
|
||||
|
||||
compile: ${LIST}
|
||||
for i in ${LIST}; do make -C ./$$i; done
|
||||
@@ -16,8 +16,12 @@ checkperm:
|
||||
@echo Please do this for each individual folder in ${LIST}
|
||||
|
||||
clean:
|
||||
@echo Nothing to do.
|
||||
rm -Rf `cat .gitignore`
|
||||
|
||||
diff:
|
||||
@echo Please do this for each individual folder in ${LIST}
|
||||
|
||||
localinstall:
|
||||
mkdir -p ~/bin/
|
||||
for i in AdminScripts UserScripts; do cd $$i; for j in `ls -1 | grep -v Makefile`; do install -o ${USER} -m 0755 "$$j" /home/${USER}/bin/; done; cd ..; done
|
||||
cd EtcFiles; for i in `ls -1 | egrep -v '*.service|skel|Makefile'`; do cp "$$i" /home/${USER}/."$$i"; done
|
||||
|
Reference in New Issue
Block a user