diff options
author | bde <bde@FreeBSD.org> | 1998-06-04 01:09:28 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1998-06-04 01:09:28 +0000 |
commit | 350f093ed268af862b5a52a8e1ddc5d43b4c2e46 (patch) | |
tree | a77b24387f034434c5799bdff5ed4ce532e317cc /gnu | |
parent | 91228bba9e9b2572b24a987e4bde16644a4ecf5b (diff) | |
download | FreeBSD-src-350f093ed268af862b5a52a8e1ddc5d43b4c2e46.zip FreeBSD-src-350f093ed268af862b5a52a8e1ddc5d43b4c2e46.tar.gz |
Removed special rules for lex- and yacc- generated files. The general
rules work identically, except that they actually work if the yacc-
generated header somehow becomes out of date.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/usr.bin/binutils/libbinutils/Makefile | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/gnu/usr.bin/binutils/libbinutils/Makefile b/gnu/usr.bin/binutils/libbinutils/Makefile index aa71af3..bc0b860 100644 --- a/gnu/usr.bin/binutils/libbinutils/Makefile +++ b/gnu/usr.bin/binutils/libbinutils/Makefile @@ -1,5 +1,5 @@ # -# $Id: Makefile,v 1.3 1998/03/12 05:14:16 jdp Exp $ +# $Id: Makefile,v 1.4 1998/05/04 21:21:17 jb Exp $ # .include "../Makefile.inc0" @@ -17,16 +17,5 @@ NOPROFILE= true NOPIC= true INTERNALLIB= true INTERNALSTATICLIB=true -CLEANFILES+= arlex.c arparse.c arparse.h - -beforedepend: arlex.c arparse.c arparse.h - -arlex.o: arparse.h - -arparse.c arparse.h: arparse.y - ${YACC} -d -o arparse.c ${.IMPSRC} - -# This rule is an attempt to cause "make -j" to work. -arparse.h: arparse.c .include <bsd.lib.mk> |