gno/usr.bin/cpp/Makefile
gdr e7bb29a749 cpp still isn't working right, but this is an interim checkin:
- compiled for GNO
- added stack diagnostics and error checking
- made large auto arrays static, where possible
- added checks for unexpected recursion
1997-12-02 08:05:53 +00:00

19 lines
390 B
Makefile

#
# $Id: Makefile,v 1.1 1997/12/02 08:05:52 gdr Exp $
#
PROG = cpp
SRCS = cpp.c eval.c getopt.c hideset.c include.c lex.c macro.c nlist.c \
tokens.c unix.c
STACK = 8192
OPTIMIZE = 0
DEBUG = 25
CFLAGS += -D__STACK_CHECK__
LDLIBS += /src/gno/lib/libc/gno/stack.o /src/gno/lib/libc/gno/stack2.o
# Delivery directory
BINDIR = /usr/bin
.INCLUDE : /src/gno/prog.mk