1 # $NetBSD: Makefile,v 1.32 2016/03/16 23:01:33 christos Exp $ 2 3 WARNS=3 4 CWARNFLAGS.clang+= -Wno-error=cast-qual 5 6 .include <bsd.own.mk> 7 8 CPPFLAGS+= -I. 9 10 PROG= ksh 11 SRCS= alloc.c c_ksh.c c_sh.c c_test.c c_ulimit.c edit.c emacs.c \ 12 eval.c exec.c expr.c history.c io.c jobs.c lex.c mail.c \ 13 main.c misc.c path.c shf.c sigact.c syn.c table.c trap.c \ 14 tree.c tty.c var.c version.c vi.c 15 DPSRCS= emacs.out siglist.out 16 .if (${MKMAN} != "no") 17 DPSRCS+=ksh.1 18 .endif 19 20 # needs tbl for the man page. 21 USETBL= 22 23 # Environment for scripts executed during build. 24 SCRIPT_ENV= \ 25 SED=${TOOL_SED:Q} 26 27 CLEANFILES+= siglist.out siglist.out.tmp 28 # two steps to prevent the creation of a bogus siglist.out 29 siglist.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 36 CLEANFILES+= emacs.out emacs.out.tmp 37 emacs.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 43 CLEANFILES+= ksh.1 ksh.1.tmp 44 ksh.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 50 .include <bsd.prog.mk> 51