Home | History | Annotate | Line # | Download | only in ksh
Makefile revision 1.12.6.2
      1  1.12.6.2        he #	$NetBSD: Makefile,v 1.12.6.2 2002/02/26 19:50:47 he Exp $
      2  1.12.6.2        he 
      3  1.12.6.2        he .include <bsd.own.mk>
      4       1.6   mycroft 
      5      1.10  christos CPPFLAGS+=	-DHAVE_CONFIG_H -I.
      6       1.1       jtc 
      7  1.12.6.2        he WARNS?=	1
      8       1.1       jtc PROG=	ksh
      9       1.6   mycroft SRCS=	alloc.c c_ksh.c c_sh.c c_test.c c_ulimit.c edit.c emacs.c \
     10       1.1       jtc 	eval.c exec.c expr.c history.c io.c jobs.c lex.c mail.c \
     11       1.2       jtc 	main.c misc.c path.c shf.c sigact.c syn.c table.c trap.c \
     12       1.1       jtc 	tree.c tty.c var.c version.c vi.c
     13  1.12.6.2        he DPSRCS=	emacs.out siglist.out
     14  1.12.6.2        he .if (${MKMAN} != "no")
     15  1.12.6.2        he DPSRCS+=ksh.1
     16  1.12.6.2        he .endif
     17       1.7      phil 
     18       1.7      phil # needs tbl for the man page.
     19       1.7      phil USETBL= 
     20  1.12.6.1     soren 
     21  1.12.6.1     soren CLEANFILES+=	siglist.out emacs.out
     22       1.1       jtc 
     23       1.1       jtc # two steps to prevent the creation of a bogus siglist.out
     24       1.1       jtc siglist.out: config.h sh.h siglist.in siglist.sh
     25  1.12.6.2        he 	sh $(.CURDIR)/siglist.sh "$(CC) -E $(CPPFLAGS) $(DEFS) -I. -I$(.CURDIR)" < $(.CURDIR)/siglist.in > tmpsiglist.out
     26       1.1       jtc 	mv tmpsiglist.out siglist.out
     27       1.1       jtc 
     28       1.1       jtc # two steps to prevent the creation of a bogus emacs.out
     29       1.1       jtc emacs.out: emacs.c
     30       1.4     perry 	sh $(.CURDIR)/emacs-gen.sh $(.CURDIR)/emacs.c > tmpemacs.out
     31       1.1       jtc 	mv tmpemacs.out emacs.out
     32      1.12   hubertf 
     33      1.12   hubertf ksh.1: ksh.Man mkman
     34      1.12   hubertf 	sh $(.CURDIR)/mkman ksh $(.CURDIR)/ksh.Man >tmpksh.1
     35      1.12   hubertf 	mv tmpksh.1 ksh.1
     36      1.11     lukem 
     37      1.11     lukem emacs.o:	emacs.out
     38      1.11     lukem trap.o:		siglist.out
     39       1.1       jtc 
     40       1.1       jtc .include <bsd.prog.mk>
     41