Makefile revision 1.29
1#	$NetBSD: Makefile,v 1.29 2011/08/14 10:40:25 christos Exp $
2
3WARNS=3
4
5.include <bsd.own.mk>
6
7CPPFLAGS+=	-I.
8
9PROG=	ksh
10SRCS=	alloc.c c_ksh.c c_sh.c c_test.c c_ulimit.c edit.c emacs.c \
11	eval.c exec.c expr.c history.c io.c jobs.c lex.c mail.c \
12	main.c misc.c path.c shf.c sigact.c syn.c table.c trap.c \
13	tree.c tty.c var.c version.c vi.c
14DPSRCS=	emacs.out siglist.out
15.if (${MKMAN} != "no")
16DPSRCS+=ksh.1
17.endif
18
19# needs tbl for the man page.
20USETBL= 
21
22# Environment for scripts executed during build.
23SCRIPT_ENV= \
24	AWK=${TOOL_AWK:Q} \
25	SED=${TOOL_SED:Q}
26
27CLEANFILES+=	siglist.out siglist.out.tmp
28# two steps to prevent the creation of a bogus siglist.out
29siglist.out: config.h sh.h siglist.in siglist.sh
30	${_MKTARGET_CREATE}
31	${SCRIPT_ENV} \
32	${HOST_SH} $(.CURDIR)/siglist.sh "$(CC) -E $(CPPFLAGS) $(DEFS) -I. -I$(.CURDIR)" < $(.CURDIR)/siglist.in > siglist.out.tmp \
33	    && mv siglist.out.tmp siglist.out
34
35# two steps to prevent the creation of a bogus emacs.out
36CLEANFILES+=	emacs.out emacs.out.tmp
37emacs.out: emacs.c
38	${_MKTARGET_CREATE}
39	${SCRIPT_ENV} \
40	${HOST_SH} $(.CURDIR)/emacs-gen.sh $(.CURDIR)/emacs.c > emacs.out.tmp \
41	    && mv emacs.out.tmp emacs.out
42
43CLEANFILES+=	ksh.1 ksh.1.tmp
44ksh.1: ksh.Man mkman
45	${_MKTARGET_CREATE}
46	${SCRIPT_ENV} \
47	${HOST_SH} $(.CURDIR)/mkman ksh $(.CURDIR)/ksh.Man >ksh.1.tmp \
48	    && mv ksh.1.tmp ksh.1
49
50CWARNFLAGS.clang+=	-Wno-format-security
51
52.include <bsd.prog.mk>
53