aboutsummaryrefslogtreecommitdiff
path: root/shells/v7sh/files/Makefile
blob: fc1cb9c0a566ee625b13dfe35a04499d789a7abc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# $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

#CFLAGS+=	-DSYSIII
#CFLAGS+=	-DRENO
#CFLAGS+=	-DULTRIX

CWARNFLAGS?=	-ansi -Wbad-function-cast
WARNS?=	6
.if ${OSREL:R} < 13
NO_WERROR=1
.else
MK_WERROR=no
.endif
WFORMAT=0

.include <bsd.prog.mk>