1997-05-07 01:29:33 +04:00
|
|
|
# $NetBSD: bsd.links.mk,v 1.4 1997/05/06 21:29:40 mycroft Exp $
|
1997-05-07 00:54:31 +04:00
|
|
|
|
|
|
|
.PHONY: linksinstall
|
1997-03-25 00:54:12 +03:00
|
|
|
|
|
|
|
.if defined(SYMLINKS) && !empty(SYMLINKS)
|
|
|
|
linksinstall::
|
|
|
|
@set ${SYMLINKS}; \
|
|
|
|
while test $$# -ge 2; do \
|
|
|
|
l=$$1; \
|
|
|
|
shift; \
|
|
|
|
t=${DESTDIR}$$1; \
|
|
|
|
shift; \
|
|
|
|
echo ".include <bsd.own.mk>"; \
|
|
|
|
echo "all:: $$t"; \
|
|
|
|
echo ".if !defined(BUILD)"; \
|
|
|
|
echo "$$t: .MADE"; \
|
|
|
|
echo ".endif"; \
|
|
|
|
echo ".if !defined(UPDATE)"; \
|
|
|
|
echo ".PHONY: $$t"; \
|
|
|
|
echo ".endif"; \
|
1997-05-07 01:29:33 +04:00
|
|
|
echo ".PRECIOUS: $$t"; \
|
1997-03-28 18:07:28 +03:00
|
|
|
echo "$$t:"; \
|
1997-03-25 00:54:12 +03:00
|
|
|
echo " @echo \"$$t -> $$l\""; \
|
|
|
|
echo " @rm -f $$t"; \
|
|
|
|
echo " @ln -s $$l $$t"; \
|
|
|
|
done | make -f -
|
|
|
|
.endif
|
|
|
|
.if defined(LINKS) && !empty(LINKS)
|
|
|
|
linksinstall::
|
|
|
|
@set ${LINKS}; \
|
|
|
|
while test $$# -ge 2; do \
|
|
|
|
l=${DESTDIR}$$1; \
|
|
|
|
shift; \
|
|
|
|
t=${DESTDIR}$$1; \
|
|
|
|
shift; \
|
|
|
|
echo ".include <bsd.own.mk>"; \
|
|
|
|
echo "all:: $$t"; \
|
|
|
|
echo ".if !defined(BUILD)"; \
|
|
|
|
echo "$$t: .MADE"; \
|
|
|
|
echo ".endif"; \
|
|
|
|
echo ".if !defined(UPDATE)"; \
|
|
|
|
echo ".PHONY: $$t"; \
|
|
|
|
echo ".endif"; \
|
1997-05-07 01:29:33 +04:00
|
|
|
echo ".PRECIOUS: $$t"; \
|
1997-03-25 00:54:12 +03:00
|
|
|
echo "$$t: $$l"; \
|
|
|
|
echo " @echo \"$$t -> $$l\""; \
|
|
|
|
echo " @rm -f $$t"; \
|
|
|
|
echo " @ln $$l $$t"; \
|
|
|
|
done | make -f -
|
|
|
|
.endif
|
|
|
|
|
|
|
|
.if !target(linksinstall)
|
|
|
|
linksinstall:
|
|
|
|
.endif
|