Remove stale clone of obj target.

This commit is contained in:
Bruce Evans 1994-08-28 18:25:55 +00:00
parent 0641ff3b3d
commit 6ad617743b
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=2372

View File

@ -21,16 +21,3 @@ pic= /usr/bin/pic
zcat= /usr/bin/zcat
compress= gzip -c
compext= .gz
# For scripts.
.if !target(obj)
obj:
@cd ${.CURDIR}; rm -rf obj; \
here=`pwd`; dest=/usr/obj/`echo $$here | sed 's,/usr/src/,,'`; \
echo "$$here -> $$dest"; ln -s $$dest obj; \
if test -d /usr/obj -a ! -d $$dest; then \
mkdir -p $$dest; \
else \
true; \
fi;
.endif