NetBSD/share/mk/bsd.links.mk

44 lines
907 B
Makefile
Raw Normal View History

# $NetBSD: bsd.links.mk,v 1.12 2000/02/26 19:02:40 mycroft Exp $
1997-05-07 00:54:31 +04:00
.PHONY: linksinstall
realinstall: linksinstall
.if defined(SYMLINKS) && !empty(SYMLINKS)
linksinstall::
@(set ${SYMLINKS}; \
echo ".include <bsd.own.mk>"; \
while test $$# -ge 2; do \
l=$$1; \
shift; \
t=${DESTDIR}$$1; \
shift; \
echo "realall: $$t"; \
echo ".PHONY: $$t"; \
echo "$$t:"; \
echo " @echo \"$$t -> $$l\""; \
echo " @rm -f $$t; ln -s $$l $$t"; \
done; \
) | ${MAKE} -f- all
.endif
.if defined(LINKS) && !empty(LINKS)
linksinstall::
@(set ${LINKS}; \
echo ".include <bsd.own.mk>"; \
while test $$# -ge 2; do \
l=${DESTDIR}$$1; \
shift; \
t=${DESTDIR}$$1; \
shift; \
echo "realall: $$t"; \
echo ".PHONY: $$t"; \
echo "$$t:"; \
echo " @echo \"$$t -> $$l\""; \
echo " @rm -f $$t; ln $$l $$t"; \
done; \
) | ${MAKE} -f- all
.endif
.if !target(linksinstall)
linksinstall:
.endif