Check-in Number:
|
1284 | |
Date: |
2001-Nov-08 19:31:50 (local)
2001-Nov-08 18:31:50 (UTC) |
User: | ms |
Branch: | |
Comment: |
The parser should be compiled first to later provide the lexer with symbols. |
Tickets: |
|
Inspections: |
|
Files: |
|
ossp-pkg/l2/Makefile.in 1.33 -> 1.34
--- Makefile.in 2001/11/08 16:54:52 1.33
+++ Makefile.in 2001/11/08 18:31:50 1.34
@@ -157,10 +157,10 @@
# build specification parser/scanner
l2_spec.c: l2_spec.h l2_spec_parse.h
l2_spec_scan.lo: l2_spec_scan.c l2_spec_parse.h
-l2_spec_scan.c: l2_spec_scan.l
- $(FLEX) -f -Pl2_spec_ -s -8 -B -ol2_spec_scan.c l2_spec_scan.l
l2_spec_parse.c l2_spec_parse.h: l2_spec_parse.y
$(BISON) -d -k -pl2_spec_ -ol2_spec_parse.c l2_spec_parse.y
+l2_spec_scan.c: l2_spec_scan.l
+ $(FLEX) -f -Pl2_spec_ -s -8 -B -ol2_spec_scan.c l2_spec_scan.l
# build test suite programs
l2_test: l2_test.o libl2.la
|
|