blob: 845674f69a021a124d5d8f609b147d95132cf505 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# $FreeBSD$
PREFIX?= /usr/local
BINDIR?= ${PREFIX}/bin
MANDIR?= ${PREFIX}/man/man
PROG= v7sh
SRCS= args.c blok.c builtin.c cmd.c ctype.c error.c expand.c \
fault.c io.c macro.c main.c msg.c name.c print.c service.c \
setbrk.c stak.c string.c test.c word.c xec.c
.if ${OSVERSION} < 500005
SRCS+= ulimit.c
.endif
#CFLAGS+= -DSYSIII
#CFLAGS+= -DRENO
#CFLAGS+= -DULTRIX
CWARNFLAGS?= -ansi -Wbad-function-cast
WARNS?= 6
NO_WERROR=1
WFORMAT=0
.include <bsd.prog.mk>
|