aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin
diff options
context:
space:
mode:
authorBruce Evans <bde@FreeBSD.org>1998-05-04 19:40:12 +0000
committerBruce Evans <bde@FreeBSD.org>1998-05-04 19:40:12 +0000
commitcaee217652e7a4e432e1b7d5b9e131f899f336dc (patch)
treeb86d745403e562b81010a1b041ae31b9c63f2e69 /usr.sbin
parent42c5ca4ad6eb44e136c5d0fb09f399ebfdc20dcc (diff)
downloadsrc-caee217652e7a4e432e1b7d5b9e131f899f336dc.tar.gz
src-caee217652e7a4e432e1b7d5b9e131f899f336dc.zip
Simplified by using new lex and yacc rules.
Notes
Notes: svn path=/head/; revision=35705
Diffstat (limited to 'usr.sbin')
-rw-r--r--usr.sbin/amd/fsinfo/Makefile19
1 files changed, 2 insertions, 17 deletions
diff --git a/usr.sbin/amd/fsinfo/Makefile b/usr.sbin/amd/fsinfo/Makefile
index c55a2a9587c0..561a3ea3716a 100644
--- a/usr.sbin/amd/fsinfo/Makefile
+++ b/usr.sbin/amd/fsinfo/Makefile
@@ -1,32 +1,17 @@
# @(#)Makefile 8.1 (Berkeley) 6/28/93
-# $Id: Makefile,v 1.5 1997/02/22 16:03:14 peter Exp $
+# $Id: Makefile,v 1.6 1997/10/05 09:40:08 jkh Exp $
PROG= fsinfo
MAN8= fsinfo.8
-SRCS= fsinfo.c fsi_gram.c fsi_gram.h fsi_lex.c \
+SRCS= fsinfo.c fsi_gram.y fsi_lex.l \
fsi_util.c fsi_analyze.c fsi_dict.c \
wr_atab.c wr_bparam.c wr_dumpset.c \
wr_exportfs.c wr_fstab.c
-CLEANFILES= \
- fsi_gram.c y.tab.c fsi_gram.h y.tab.h \
- fsi_lex.c lex.yy.c y.output
CFLAGS+=-I.
CFLAGS+=-I${.CURDIR}/../include
CFLAGS+=-I${.CURDIR}/../config
CFLAGS+=-DOS_HDR=\"os-bsd44.h\"
-fsi_lex.o fsinfo.o: fsi_gram.h
-.ORDER: fsi_gram.c fsi_gram.h
-fsi_gram.c fsi_gram.h: ../fsinfo/fsi_gram.y
- @echo "# expect 2 shift/reduce conflicts"
- ${YACC} -d ${.CURDIR}/fsi_gram.y
- mv -f y.tab.c fsi_gram.c
- mv -f y.tab.h fsi_gram.h
-
-fsi_lex.c: ../fsinfo/fsi_lex.l
- ${LEX} ${.CURDIR}/fsi_lex.l
- mv -f lex.yy.c fsi_lex.c
-
.PATH: ${.CURDIR}/../config
.include "../../Makefile.inc"
.include <bsd.prog.mk>