diff options
| author | Bruce Evans <bde@FreeBSD.org> | 1998-05-04 20:09:06 +0000 |
|---|---|---|
| committer | Bruce Evans <bde@FreeBSD.org> | 1998-05-04 20:09:06 +0000 |
| commit | b681d90662103774ec7811d31402a3d72d79c3a0 (patch) | |
| tree | c8ec75d059eed96ac31afae431487a7f988bdd55 /usr.bin | |
| parent | dd8eff227e110891478d0697be186ba77c59d937 (diff) | |
Notes
Diffstat (limited to 'usr.bin')
| -rw-r--r-- | usr.bin/colldef/Makefile | 6 | ||||
| -rw-r--r-- | usr.bin/mk_cmds/Makefile | 8 | ||||
| -rw-r--r-- | usr.bin/mklocale/Makefile | 4 | ||||
| -rw-r--r-- | usr.bin/xlint/lint1/Makefile | 8 |
4 files changed, 8 insertions, 18 deletions
diff --git a/usr.bin/colldef/Makefile b/usr.bin/colldef/Makefile index 295fe3f53aaf..9fe2f68ead35 100644 --- a/usr.bin/colldef/Makefile +++ b/usr.bin/colldef/Makefile @@ -1,13 +1,11 @@ -# $Id$ +# $Id: Makefile,v 1.11 1997/02/22 19:54:30 peter Exp $ PROG = colldef LFLAGS = -8 -i -YFLAGS = -d CFLAGS += -I. -I${.CURDIR}/../../lib/libc/locale -DCOLLATE_DEBUG -SRCS = parse.c scan.c +SRCS = parse.y scan.l LDADD = -ll DPADD = ${LIBL} -CLEANFILES += lex.yy.c parse.c scan.c y.tab.[ch] SUBDIR = data .include <bsd.prog.mk> diff --git a/usr.bin/mk_cmds/Makefile b/usr.bin/mk_cmds/Makefile index a240c05b1fa5..74a72624aac2 100644 --- a/usr.bin/mk_cmds/Makefile +++ b/usr.bin/mk_cmds/Makefile @@ -1,13 +1,9 @@ -# $Id$ +# $Id: Makefile,v 1.5 1997/02/22 19:56:09 peter Exp $ PROG= mk_cmds -# -# NB: ct.c must come before cmd_tbl.c so that y.tab.h will be generated. -# -SRCS= mk_cmds.c options.c utils.c ct.c cmd_tbl.c +SRCS= mk_cmds.c options.c utils.c ct.y cmd_tbl.l CFLAGS+= -I. -I${.CURDIR}/../../lib/libss -DIN_MK_CMDS LFLAGS= -l -CLEANFILES+= y.tab.c y.tab.h lex.yy.c cmd_tbl.c ct.c NOMAN= # XXX LDADD+= -ll diff --git a/usr.bin/mklocale/Makefile b/usr.bin/mklocale/Makefile index f07bf46d7f6b..e3ca24cf325c 100644 --- a/usr.bin/mklocale/Makefile +++ b/usr.bin/mklocale/Makefile @@ -1,9 +1,9 @@ # @(#)Makefile 8.1 (Berkeley) 6/7/93 +# $Id$ PROG= mklocale -SRCS= yacc.c lex.c +SRCS= yacc.y lex.l CFLAGS+=-I. -CLEANFILES+=y.tab.h yacc.c lex.c MAN1= mklocale.1 SUBDIR= data diff --git a/usr.bin/xlint/lint1/Makefile b/usr.bin/xlint/lint1/Makefile index e20938eb4994..56d3830d7ecf 100644 --- a/usr.bin/xlint/lint1/Makefile +++ b/usr.bin/xlint/lint1/Makefile @@ -1,21 +1,17 @@ # $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 y.tab.h +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 DPADD+= ${LIBL} -YFLAGS= -d CFLAGS+=-I. LINTFLAGS=-aehpz -CLEANFILES+=y.tab.h cgram.c scan.c BINDIR= /usr/libexec # XXX: -O causes the gcc to die on the i386, when compiling tree.o CFLAGS+= -DXXX_BROKEN_GCC -y.tab.h: cgram.c - .include <bsd.prog.mk> |
