summaryrefslogtreecommitdiff
path: root/usr.bin/pcc/cc/ccom
diff options
context:
space:
mode:
authorOtto Moerbeek <otto@cvs.openbsd.org>2007-09-16 10:39:38 +0000
committerOtto Moerbeek <otto@cvs.openbsd.org>2007-09-16 10:39:38 +0000
commite68270c198a42bac7327760560a739ee02947b0e (patch)
tree7ed2b09091d87e753d0720501db25a9c3b95df05 /usr.bin/pcc/cc/ccom
parent92619b2927c391fb7e94d552e365b85540a5c4c0 (diff)
remove cgram.h from CLEANFILES, so make depend; make; make clean; make
works; instead reomve cgram.h when doing make cleandir
Diffstat (limited to 'usr.bin/pcc/cc/ccom')
-rw-r--r--usr.bin/pcc/cc/ccom/Makefile7
1 files changed, 5 insertions, 2 deletions
diff --git a/usr.bin/pcc/cc/ccom/Makefile b/usr.bin/pcc/cc/ccom/Makefile
index cc3ddb0a12d..b44453a626d 100644
--- a/usr.bin/pcc/cc/ccom/Makefile
+++ b/usr.bin/pcc/cc/ccom/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.3 2007/09/15 21:45:21 otto Exp $
+# $OpenBSD: Makefile,v 1.4 2007/09/16 10:39:37 otto Exp $
#
# Makefile for the cpp part of pcc.
#
@@ -8,7 +8,7 @@ BINDIR= ${PREFIX}/libexec
MANDIR= ${PREFIX}/share/man/man
TARGOS= openbsd
TARGMACH= x86
-CLEANFILES= external.h external.c mkext cgram.h
+CLEANFILES= external.h external.c mkext
CFLAGS+= -DPCC_DEBUG -DGCC_COMPAT
CFLAGS+= -Wall -Wmissing-prototypes -Wstrict-prototypes -Werror
@@ -40,4 +40,7 @@ external.h external.c: mkext.c table.c common.c
pass2.h: external.h
optim2.o reader.o: external.h
+cleandepend:
+ rm -f .depend ${.CURDIR}/tags cgram.h
+
.include <bsd.prog.mk>