Update of /cvsroot/flexml/flexml/examples
In directory sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv13298
Modified Files:
Makefile
Log Message:
Using gcc 3.2.3 on Sparc/Solaris 5.8, it was taking too long
to compile xhtml1-transitional.o; this turns off -O2 for that file,
allowing this example to run (and succeed.)
Index: Makefile
===================================================================
RCS file: /cvsroot/flexml/flexml/examples/Makefile,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- Makefile 18 Jul 2006 18:21:13 -0000 1.7
+++ Makefile 28 Aug 2006 20:50:38 -0000 1.8
@@ -124,6 +124,9 @@
xhtml1-transitional.c: xhtml1-transitional.l
$(FLEX) -B -s -v -Ca -oxhtml1-transitional.c xhtml1-transitional.l
+# turn off the -O2 when building this -- it takes too long to run
+xhtml1-transitional.o: CFLAGS = -g
+
xhtml1-transitional.o: xhtml1-transitional.c xhtml1-transitional.h
xhtml-href.c: xhtml-href.act xhtml1-transitional.dtd
|