diff options
author | Jörg Budischewski <jbu@openoffice.org> | 2001-04-18 09:55:37 +0000 |
---|---|---|
committer | Jörg Budischewski <jbu@openoffice.org> | 2001-04-18 09:55:37 +0000 |
commit | 1003bc67c27f884242e0d1c3c63950fa5e7051b6 (patch) | |
tree | d259a1306c61a3b67e76e4ffd571f674cac09dce /idlc/source | |
parent | 5f09335325538b4f40e7549870e88debc825ac79 (diff) |
scanner.ll is now stripped from linefeeds
Diffstat (limited to 'idlc/source')
-rw-r--r-- | idlc/source/makefile.mk | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/idlc/source/makefile.mk b/idlc/source/makefile.mk index 7d0ce6f8054d..1a8fa2bb0480 100644 --- a/idlc/source/makefile.mk +++ b/idlc/source/makefile.mk @@ -2,9 +2,9 @@ # # $RCSfile: makefile.mk,v $ # -# $Revision: 1.1 $ +# $Revision: 1.2 $ # -# last change: $Author: jsc $ $Date: 2001-03-15 12:30:43 $ +# last change: $Author: jbu $ $Date: 2001-04-18 10:55:37 $ # # The Contents of this file are made available subject to the terms of # either of the following licenses @@ -136,9 +136,11 @@ APP1STDLIBS=\ .INCLUDE : target.mk +$(MISC)$/stripped_scanner.ll : scanner.ll + +tr -d "\015" < scanner.ll > $(MISC)$/stripped_scanner.ll -$(MISC)$/scanner.cxx: scanner.ll - +flex -o$(MISC)$/scanner.cxx scanner.ll +$(MISC)$/scanner.cxx: $(MISC)$/stripped_scanner.ll + +flex -o$(MISC)$/scanner.cxx $(MISC)$/stripped_scanner.ll $(MISC)$/parser.cxx: parser.yy +bison -v -d -o$(MISC)$/parser.cxx parser.yy |