Home | History | Annotate | Line # | Download | only in ksh
Makefile revision 1.4
      1  1.4  perry #	$NetBSD: Makefile,v 1.4 1997/01/16 21:17:53 perry Exp $
      2  1.1    jtc CFLAGS+=	-DHAVE_CONFIG_H -I.
      3  1.1    jtc 
      4  1.1    jtc PROG=	ksh
      5  1.1    jtc SRCS=	alloc.c c_ksh.c c_sh.c c_test.c c_ulimit.c edit.c emacs.c \
      6  1.1    jtc 	eval.c exec.c expr.c history.c io.c jobs.c lex.c mail.c \
      7  1.2    jtc 	main.c misc.c path.c shf.c sigact.c syn.c table.c trap.c \
      8  1.1    jtc 	tree.c tty.c var.c version.c vi.c
      9  1.1    jtc CLEANFILES+=emacs.out siglist.out
     10  1.1    jtc 
     11  1.1    jtc beforedepend:	emacs.out siglist.out
     12  1.1    jtc 
     13  1.1    jtc # two steps to prevent the creation of a bogus siglist.out
     14  1.1    jtc siglist.out: config.h sh.h siglist.in siglist.sh
     15  1.4  perry 	sh $(.CURDIR)/siglist.sh "$(CPP) $(CPPFLAGS) $(DEFS) -I. -I$(.CURDIR)" < $(.CURDIR)/siglist.in > tmpsiglist.out
     16  1.1    jtc 	mv tmpsiglist.out siglist.out
     17  1.1    jtc 
     18  1.1    jtc # two steps to prevent the creation of a bogus emacs.out
     19  1.1    jtc emacs.out: emacs.c
     20  1.4  perry 	sh $(.CURDIR)/emacs-gen.sh $(.CURDIR)/emacs.c > tmpemacs.out
     21  1.1    jtc 	mv tmpemacs.out emacs.out
     22  1.1    jtc 
     23  1.1    jtc emacs.o: emacs.out
     24  1.1    jtc trap.o: siglist.out
     25  1.1    jtc 
     26  1.1    jtc .include <bsd.prog.mk>
     27