diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2005-12-11 20:03:04 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2005-12-11 20:03:04 +0000 |
commit | 99598ff30d95dc3d2ec77986f4833b3ac0ddc5ae (patch) | |
tree | a72048fe16afabd5ef86f482fa08fe26fda1555a /usr.bin/xlint/lint1 | |
parent | b9e581298f9708b69e139b48afe7e22eb881e5cd (diff) |
SRCS should contain .y and .l references, then make will do the right thing
Diffstat (limited to 'usr.bin/xlint/lint1')
-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 4345ae5e31b..c4d3324e2b2 100644 --- a/usr.bin/xlint/lint1/Makefile +++ b/usr.bin/xlint/lint1/Makefile @@ -1,8 +1,8 @@ -# $OpenBSD: Makefile,v 1.8 2005/12/10 17:41:03 cloder Exp $ +# $OpenBSD: Makefile,v 1.9 2005/12/11 20:03:03 deraadt 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 \ +SRCS= cgram.y scan.l mem1.c mem.c err.c main1.c decl.c tree.c func.c \ init.c emit.c emit1.c NOMAN= LDADD+= -ll |