Makefile revision 1.6
11.6Smycroft# $NetBSD: Makefile,v 1.6 1997/05/09 13:28:39 mycroft 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.1Sjtc 121.1Sjtc# two steps to prevent the creation of a bogus siglist.out 131.1Sjtcsiglist.out: config.h sh.h siglist.in siglist.sh 141.4Sperry sh $(.CURDIR)/siglist.sh "$(CPP) $(CPPFLAGS) $(DEFS) -I. -I$(.CURDIR)" < $(.CURDIR)/siglist.in > tmpsiglist.out 151.1Sjtc mv tmpsiglist.out siglist.out 161.1Sjtc 171.1Sjtc# two steps to prevent the creation of a bogus emacs.out 181.1Sjtcemacs.out: emacs.c 191.4Sperry sh $(.CURDIR)/emacs-gen.sh $(.CURDIR)/emacs.c > tmpemacs.out 201.1Sjtc mv tmpemacs.out emacs.out 211.1Sjtc 221.1Sjtc.include <bsd.prog.mk> 23