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