diff options
author | bde <bde@FreeBSD.org> | 1998-04-26 16:12:23 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1998-04-26 16:12:23 +0000 |
commit | ea697874b9d11504507d7e2b5f1512bd8ed3148b (patch) | |
tree | b282a3a061ca58e7a24b365ba0e14526cced1860 /bin/sh | |
parent | 13f19b6005b3cdd99374c2602cf856a5dd151eb9 (diff) | |
download | FreeBSD-src-ea697874b9d11504507d7e2b5f1512bd8ed3148b.zip FreeBSD-src-ea697874b9d11504507d7e2b5f1512bd8ed3148b.tar.gz |
Backed out most of rev.1.19 (explicit dependencies of object files
on generated headers). This is now handled generally in bsd.prog.mk.
Diffstat (limited to 'bin/sh')
-rw-r--r-- | bin/sh/Makefile | 20 |
1 files changed, 1 insertions, 19 deletions
diff --git a/bin/sh/Makefile b/bin/sh/Makefile index fe0d02e..1d573d3 100644 --- a/bin/sh/Makefile +++ b/bin/sh/Makefile @@ -1,5 +1,5 @@ # @(#)Makefile 8.4 (Berkeley) 5/5/95 -# $Id: Makefile,v 1.22 1997/08/25 19:50:01 bde Exp $ +# $Id: Makefile,v 1.23 1997/10/05 09:38:43 jkh Exp $ PROG= sh SHSRCS= alias.c cd.c echo.c error.c eval.c exec.c expand.c \ @@ -59,22 +59,4 @@ token.h: mktokens y.tab.h: arith.c -# Rules for object files that rely on generated headers. -arith_lex.o: y.tab.h -cd.o: nodes.h -eval.o: builtins.h nodes.h syntax.h -exec.o: builtins.h nodes.h syntax.h -expand.o: nodes.h syntax.h -input.o: syntax.h -jobs.o: nodes.h syntax.h -main.o: nodes.h -mystring.o: syntax.h -options.o: nodes.h -output.o: syntax.h -parser.o: nodes.h syntax.h token.h -redir.o: nodes.h -show.o: nodes.h -trap.o: nodes.h syntax.h -var.o: nodes.h syntax.h - .include <bsd.prog.mk> |