diff options
author | Chad Loder <cloder@cvs.openbsd.org> | 2005-12-10 17:41:04 +0000 |
---|---|---|
committer | Chad Loder <cloder@cvs.openbsd.org> | 2005-12-10 17:41:04 +0000 |
commit | fb14de5a0b5a26cca9329a7fc63a8a90b1789bc1 (patch) | |
tree | a93f39fabbb674c08b5ef56b95e6fda491c70830 /usr.bin/xlint/lint1/Makefile | |
parent | 21934acb9bcca96a2f98f0e85f3315a7160d87a1 (diff) |
Back out all gcc attribute parsing changes until we can do this the right
way some day. The effect of __attribute__ on a LALR C grammar is just too
ugly to fix quicklly.
Diffstat (limited to 'usr.bin/xlint/lint1/Makefile')
-rw-r--r-- | usr.bin/xlint/lint1/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/xlint/lint1/Makefile b/usr.bin/xlint/lint1/Makefile index ccbe846cc44..4345ae5e31b 100644 --- a/usr.bin/xlint/lint1/Makefile +++ b/usr.bin/xlint/lint1/Makefile @@ -1,9 +1,9 @@ -# $OpenBSD: Makefile,v 1.7 2005/12/07 01:55:12 cloder Exp $ +# $OpenBSD: Makefile,v 1.8 2005/12/10 17:41:03 cloder Exp $ # $NetBSD: Makefile,v 1.3 1995/07/04 01:53:05 cgd Exp $ PROG= lint1 SRCS= cgram.c scan.c mem1.c mem.c err.c main1.c decl.c tree.c func.c \ - init.c emit.c emit1.c attr.c + init.c emit.c emit1.c NOMAN= LDADD+= -ll DPADD+= ${LIBL} |