NetBSD/bin/ksh/Makefile

27 lines
864 B
Makefile
Raw Normal View History

1997-01-12 22:11:37 +03:00
# $NetBSD: Makefile,v 1.3 1997/01/12 19:11:37 tls Exp $
1996-09-22 03:35:13 +04:00
CFLAGS+= -DHAVE_CONFIG_H -I.
PROG= ksh
SRCS= alloc.c c_ksh.c c_sh.c c_test.c c_ulimit.c edit.c emacs.c \
eval.c exec.c expr.c history.c io.c jobs.c lex.c mail.c \
main.c misc.c path.c shf.c sigact.c syn.c table.c trap.c \
1996-09-22 03:35:13 +04:00
tree.c tty.c var.c version.c vi.c
CLEANFILES+=emacs.out siglist.out
beforedepend: emacs.out siglist.out
# two steps to prevent the creation of a bogus siglist.out
siglist.out: config.h sh.h siglist.in siglist.sh
$(.CURDIR)/siglist.sh "$(CPP) $(CPPFLAGS) $(DEFS) -I. -I$(.CURDIR)" < $(.CURDIR)/siglist.in > tmpsiglist.out
mv tmpsiglist.out siglist.out
# two steps to prevent the creation of a bogus emacs.out
emacs.out: emacs.c
$(.CURDIR)/emacs-gen.sh $(.CURDIR)/emacs.c > tmpemacs.out
mv tmpemacs.out emacs.out
emacs.o: emacs.out
trap.o: siglist.out
.include <bsd.prog.mk>