Renaming package to ShadowArch to follow /wiki/Design_Principles; improved packing; development sync to current state -- massive overhaul

This commit is contained in:
DarkFeather
2019-05-06 02:04:19 -05:00
parent deac12d010
commit c12535de2e
176 changed files with 289 additions and 235 deletions

View File

@@ -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