From: Vern Paxson Date: Mon, 29 Nov 1993 21:35:04 +0000 (+0000) Subject: Added intermediate file going scan.l -> scan.c X-Git-Tag: flex-2-5-5b~319 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b62434931af71e7cca8d332fe5e360f365394952;p=flex Added intermediate file going scan.l -> scan.c --- diff --git a/Makefile.in b/Makefile.in index e1a86d4..c154cb2 100644 --- a/Makefile.in +++ b/Makefile.in @@ -109,7 +109,8 @@ parse.h: parse.c scan.c: scan.l $(FLEX) $(FLEX_FLAGS) $(COMPRESSION) $(srcdir)/scan.l \ - | sed s,\"$(srcdir)/scan.l\",\"scan.l\", >scan.c + | sed s,\"$(srcdir)/scan.l\",\"scan.l\", >scan.tmp + mv scan.tmp scan.c scan.o: scan.c parse.h flexdef.h @@ -194,7 +195,7 @@ gcc-lint: $(LINTSRCS) gcc -Dlint -Wall $(LINTSRCS) >flex.gcc-lint 2>&1 mostlyclean: - rm -f *~ *.bak core errs + rm -f *~ *.bak core errs scan.tmp clean: mostlyclean rm -f parse.c parse.h *.o *.lint lex.yy.c $(FLEXLIB)