Deleted the private clean/cleandir targets in the Makefile. Delete

a hardcoded reference to the "obj" dir. So this makefile should now
work with and without an obj dir and deletes the obj dir with a
normal cleandir.
This commit is contained in:
Andreas Schulz 1994-10-31 01:17:24 +00:00
parent bef25be89c
commit 6d59e80597
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=4020

View File

@ -10,10 +10,10 @@ RM= rm -f
.mc.cf:
$(RM) $@
(cd ${.CURDIR} && $(M4) ${@:R}.mc > obj/$@)
(cd ${.CURDIR} && $(M4) ${@:R}.mc ) > $@
$(CHMOD) $(ROMODE) $@
ALL= cs-hidden.cf cs-exposed.cf \
CLEANFILES= cs-hidden.cf cs-exposed.cf \
hpux-cs-exposed.cf hpux-cs-hidden.cf \
riscos-cs-exposed.cf \
sunos3.5-cs-exposed.cf sunos3.5-cs-hidden.cf \
@ -25,10 +25,7 @@ ALL= cs-hidden.cf cs-exposed.cf \
python.cf \
clientproto.cf tcpproto.cf uucpproto.cf
all: $(ALL)
clean cleandir:
$(RM) $(ALL) core
all: $(CLEANFILES)
depend install: