Makefile:

- set debug, optimization level, and stack size appropriately
	  for the released version
	- set HAS_MKSO_DATA and HAS_MKLINK_DATA
This commit is contained in:
gdr-ftp 1999-02-15 20:11:25 +00:00
parent b88cc47e7f
commit bdeb2998e1
1 changed files with 6 additions and 5 deletions

View File

@ -1,15 +1,16 @@
#
# $Id: Makefile,v 1.1 1999/02/15 00:22:10 gdr-ftp Exp $
# $Id: Makefile,v 1.2 1999/02/15 20:11:25 gdr-ftp Exp $
#
PROG = newuser
SRCS = newuser.c
LDADD = -lcrypt -lcontrib
DEBUG = 25
OPTIMIZE= 0
CFLAGS += -D__STACK_CHECK__
STACK = 4096 # observed: 940
BINDIR = /usr/sbin
CHAPTER = 8
# observed stack usage: 944 bytes
HAS_MKSO_DATA = true
HAS_MKLINK_DATA = true
.INCLUDE: /src/gno/prog.mk