Makefile revision 1.4
11.4Sperry# $NetBSD: Makefile,v 1.4 1997/01/16 21:17:53 perry Exp $ 21.1SjtcCFLAGS+= -DHAVE_CONFIG_H -I. 31.1Sjtc 41.1SjtcPROG= ksh 51.1SjtcSRCS= alloc.c c_ksh.c c_sh.c c_test.c c_ulimit.c edit.c emacs.c \ 61.1Sjtc eval.c exec.c expr.c history.c io.c jobs.c lex.c mail.c \ 71.2Sjtc main.c misc.c path.c shf.c sigact.c syn.c table.c trap.c \ 81.1Sjtc tree.c tty.c var.c version.c vi.c 91.1SjtcCLEANFILES+=emacs.out siglist.out 101.1Sjtc 111.1Sjtcbeforedepend: emacs.out siglist.out 121.1Sjtc 131.1Sjtc# two steps to prevent the creation of a bogus siglist.out 141.1Sjtcsiglist.out: config.h sh.h siglist.in siglist.sh 151.4Sperry sh $(.CURDIR)/siglist.sh "$(CPP) $(CPPFLAGS) $(DEFS) -I. -I$(.CURDIR)" < $(.CURDIR)/siglist.in > tmpsiglist.out 161.1Sjtc mv tmpsiglist.out siglist.out 171.1Sjtc 181.1Sjtc# two steps to prevent the creation of a bogus emacs.out 191.1Sjtcemacs.out: emacs.c 201.4Sperry sh $(.CURDIR)/emacs-gen.sh $(.CURDIR)/emacs.c > tmpemacs.out 211.1Sjtc mv tmpemacs.out emacs.out 221.1Sjtc 231.1Sjtcemacs.o: emacs.out 241.1Sjtctrap.o: siglist.out 251.1Sjtc 261.1Sjtc.include <bsd.prog.mk> 27