Makefile revision 1.7
11.7Sphil# $NetBSD: Makefile,v 1.7 1997/06/30 19:30:04 phil Exp $ 21.6Smycroft 31.1SjtcCFLAGS+= -DHAVE_CONFIG_H -I. 41.1Sjtc 51.1SjtcPROG= ksh 61.6SmycroftSRCS= alloc.c c_ksh.c c_sh.c c_test.c c_ulimit.c edit.c emacs.c \ 71.1Sjtc eval.c exec.c expr.c history.c io.c jobs.c lex.c mail.c \ 81.2Sjtc main.c misc.c path.c shf.c sigact.c syn.c table.c trap.c \ 91.1Sjtc tree.c tty.c var.c version.c vi.c 101.6SmycroftDPSRCS= emacs.out siglist.out 111.7Sphil 121.7Sphil# needs tbl for the man page. 131.7SphilUSETBL= 141.1Sjtc 151.1Sjtc# two steps to prevent the creation of a bogus siglist.out 161.1Sjtcsiglist.out: config.h sh.h siglist.in siglist.sh 171.4Sperry sh $(.CURDIR)/siglist.sh "$(CPP) $(CPPFLAGS) $(DEFS) -I. -I$(.CURDIR)" < $(.CURDIR)/siglist.in > tmpsiglist.out 181.1Sjtc mv tmpsiglist.out siglist.out 191.1Sjtc 201.1Sjtc# two steps to prevent the creation of a bogus emacs.out 211.1Sjtcemacs.out: emacs.c 221.4Sperry sh $(.CURDIR)/emacs-gen.sh $(.CURDIR)/emacs.c > tmpemacs.out 231.1Sjtc mv tmpemacs.out emacs.out 241.1Sjtc 251.1Sjtc.include <bsd.prog.mk> 26