diff options
author | bde <bde@FreeBSD.org> | 1998-05-04 20:09:06 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1998-05-04 20:09:06 +0000 |
commit | f701fbc7d569ab22a7d57c4c0cba391bad3d755d (patch) | |
tree | 5d6f5afb81bfecb644f11f70cc59cbe58b46169b /bin/sh | |
parent | 4c2ff0579d45e8f11accb16489583563b979e4fb (diff) | |
download | FreeBSD-src-f701fbc7d569ab22a7d57c4c0cba391bad3d755d.zip FreeBSD-src-f701fbc7d569ab22a7d57c4c0cba391bad3d755d.tar.gz |
Fixed races in `make -jN' using new yacc rules.
Diffstat (limited to 'bin/sh')
-rw-r--r-- | bin/sh/Makefile | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/bin/sh/Makefile b/bin/sh/Makefile index 1d573d3..138bc05 100644 --- a/bin/sh/Makefile +++ b/bin/sh/Makefile @@ -1,12 +1,12 @@ # @(#)Makefile 8.4 (Berkeley) 5/5/95 -# $Id: Makefile,v 1.23 1997/10/05 09:38:43 jkh Exp $ +# $Id: Makefile,v 1.24 1998/04/26 16:12:23 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 +GENSRCS= builtins.c init.c nodes.c syntax.c GENHDRS= builtins.h nodes.h syntax.h token.h SRCS= ${SHSRCS} ${GENSRCS} ${GENHDRS} @@ -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> |