|
|
|
@ -9,10 +9,10 @@ rmdir:
@@ -9,10 +9,10 @@ rmdir:
|
|
|
|
|
rmdir $(path) 2>&-; :
|
|
|
|
|
|
|
|
|
|
install: mkdir |
|
|
|
|
find . -type f -executable -exec basename {} \; | while read -r line; do ln -s $$(realpath $$line) $(path)/$$line; done
|
|
|
|
|
gfind . -maxdepth 1 -type f -executable -exec basename {} \; | while read -r line; do ln -s $$(realpath $$line) $(path)/$$line; done
|
|
|
|
|
|
|
|
|
|
rmlinks: |
|
|
|
|
find . -type f -executable -exec basename {} \; | xargs -IF rm -fv $(path)/F
|
|
|
|
|
gfind . -maxdepth 1 -type f -executable -exec basename {} \; | xargs -IF rm -fv $(path)/F
|
|
|
|
|
|
|
|
|
|
uninstall: rmlinks rmdir |
|
|
|
|
|
|
|
|
|