diff options
author | bde <bde@FreeBSD.org> | 1998-05-06 15:33:59 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1998-05-06 15:33:59 +0000 |
commit | 196c9f6d89ff0fcec0be82613b9ab61e81677776 (patch) | |
tree | a8a2bf169c74c5ba2fa9c993a00014e9a689f770 /bin | |
parent | b11e33ba514dddbb7294f11ffbe0d96bd74f6cc8 (diff) | |
download | FreeBSD-src-196c9f6d89ff0fcec0be82613b9ab61e81677776.zip FreeBSD-src-196c9f6d89ff0fcec0be82613b9ab61e81677776.tar.gz |
Backed out previous backout. Put y.tab.h back in SRCS.
Diffstat (limited to 'bin')
-rw-r--r-- | bin/sh/Makefile | 16 |
1 files changed, 6 insertions, 10 deletions
diff --git a/bin/sh/Makefile b/bin/sh/Makefile index 403fcbb..c5b6c65 100644 --- a/bin/sh/Makefile +++ b/bin/sh/Makefile @@ -1,14 +1,14 @@ # @(#)Makefile 8.4 (Berkeley) 5/5/95 -# $Id: Makefile,v 1.25 1998/05/04 20:09:00 bde Exp $ +# $Id: Makefile,v 1.26 1998/05/05 07:36:55 bde Exp $ PROG= sh -SHSRCS= alias.c cd.c echo.c error.c eval.c exec.c expand.c \ +SHSRCS= alias.c arith.y arith_lex.l cd.c echo.c error.c eval.c exec.c expand.c \ histedit.c input.c jobs.c mail.c main.c memalloc.c miscbltin.c \ mystring.c options.c output.c parser.c printf.c redir.c show.c \ trap.c var.c -GENSRCS= arith.c arith_lex.c builtins.c init.c nodes.c syntax.c -GENHDRS= builtins.h nodes.h syntax.h token.h -SRCS= ${SHSRCS} ${GENSRCS} ${GENHDRS} +GENSRCS= builtins.c init.c nodes.c syntax.c +GENHDRS= builtins.h nodes.h syntax.h token.h y.tab.h +SRCS= ${SHSRCS} ${GENSRCS} ${GENHDRS} y.tab.h DPADD+= ${LIBL} ${LIBEDIT} ${LIBTERMCAP} LDADD+= -ll -ledit -ltermcap @@ -21,11 +21,9 @@ CFLAGS+=-DSHELL -I. -I${.CURDIR} .PATH: ${.CURDIR}/bltin ${.CURDIR}/../../usr.bin/printf CLEANFILES+= mkinit mkinit.o mknodes mknodes.o \ - mksyntax mksyntax.o \ - y.tab.h + mksyntax mksyntax.o CLEANFILES+= ${GENSRCS} ${GENHDRS} - .ORDER: builtins.c builtins.h builtins.c builtins.h: mkbuiltins builtins.def cd ${.CURDIR}; sh mkbuiltins ${.OBJDIR} @@ -57,6 +55,4 @@ syntax.c syntax.h: mksyntax token.h: mktokens sh ${.CURDIR}/mktokens -y.tab.h: arith.c - .include <bsd.prog.mk> |