mirror of
https://github.com/GnoConsortium/gno.git
synced 2025-01-23 09:33:43 +00:00
e7bb29a749
- compiled for GNO - added stack diagnostics and error checking - made large auto arrays static, where possible - added checks for unexpected recursion
19 lines
390 B
Makefile
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
|