aboutsummaryrefslogtreecommitdiff
path: root/gnu/usr.bin/cc/cpp
diff options
context:
space:
mode:
authorBruce Evans <bde@FreeBSD.org>1998-05-04 16:58:50 +0000
committerBruce Evans <bde@FreeBSD.org>1998-05-04 16:58:50 +0000
commitb03605afba8e0f41cc5c98740dacf743829fae8c (patch)
tree9a9b1881ccf822a94048fb06c76f1ab74beb3a88 /gnu/usr.bin/cc/cpp
parente6abc0de8112f99bcd29958b89c8c4a6fe8a5df6 (diff)
Notes
Diffstat (limited to 'gnu/usr.bin/cc/cpp')
-rw-r--r--gnu/usr.bin/cc/cpp/Makefile17
1 files changed, 5 insertions, 12 deletions
diff --git a/gnu/usr.bin/cc/cpp/Makefile b/gnu/usr.bin/cc/cpp/Makefile
index f2fcf23e0ab5..35efdec4f063 100644
--- a/gnu/usr.bin/cc/cpp/Makefile
+++ b/gnu/usr.bin/cc/cpp/Makefile
@@ -1,18 +1,11 @@
-#
-# $Id: Makefile,v 1.9 1997/02/22 15:44:59 peter Exp $
-#
+# $Id$
-PROG = cpp
-SRCS = cccp.c cexp.c
+PROG= cpp
+SRCS= cccp.c cexp.y obstack.c version.c
+YACC= ${BISON}
+YFLAGS=
BINDIR= /usr/libexec
-SRCS+= obstack.c version.c
MAN1= cccp.1
MLINKS= cccp.1 cpp.1
-.ORDER: cexp.c cexp.h
-cexp.c cexp.h: cexp.y
- ${BISON} -d ${GCCDIR}/cexp.y -o cexp.c
-
-CLEANFILES+= cexp.c cexp.h
-
.include <bsd.prog.mk>