xref: /original-bsd/old/cpp/Makefile (revision 2bb802fc)
1#
2# Copyright (c) 1987 Regents of the University of California.
3# All rights reserved.  The Berkeley software License Agreement
4# specifies the terms and conditions for redistribution.
5#
6#	@(#)Makefile	1.5	(Berkeley)	06/06/87
7#
8CFLAGS=	-O -Dunix=1 -DFLEXNAMES
9LIBC=	/lib/libc.a
10YYFIX=	../pcc/pcc.${MACHINE}/:yyfix
11SRCS=	cpp.c cpy.c rodata.c
12OBJS=	cpp.o cpy.o rodata.o
13
14all: cpp
15
16cpp:	${OBJS} ${LIBC}
17	${CC} -o $@ ${CFLAGS} ${OBJS}
18
19cpy.c: cpy.y
20	yacc cpy.y
21	${YYFIX} yyexca yyact yypact yypgo yyr1 yyr2 yychk yydef
22	mv y.tab.c cpy.c
23
24cpy.o: cpy.c yylex.c
25
26rodata.o: cpy.c
27	${CC} ${CFLAGS} -R -c rodata.c
28
29clean: FRC
30	rm -f ${OBJS} cpp core cpy.c rodata.c
31
32depend: ${SRCS} FRC
33	mkdep ${CFLAGS} ${SRCS}
34
35install: FRC
36	install -s -o bin -g bin -m 755 cpp ${DESTDIR}/lib/cpp
37
38lint: ${SRCS} FRC
39	lint ${CFLAGS} ${SRCS}
40
41tags: ${SRCS} FRC
42	ctags ${SRCS}
43
44FRC:
45
46# DO NOT DELETE THIS LINE -- mkdep uses it.
47# DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY.
48
49cpp.o: cpp.c /usr/include/sys/param.h /usr/include/sys/types.h
50cpp.o: /usr/include/signal.h /usr/include/machine/machparam.h
51cpp.o: /usr/include/stdio.h /usr/include/ctype.h
52cpy.o: cpy.c
53cpy.o:yylex.c
54rodata.o: rodata.c
55
56# IF YOU PUT ANYTHING HERE IT WILL GO AWAY
57