From: Keith J. <bu...@us...> - 2002-08-22 18:57:30
|
Update of /cvsroot/cup-language/cup/src In directory usw-pr-cvs1:/tmp/cvs-serv15220 Modified Files: Makefile cup.h.in Log Message: Changlog? Changelog?? I don't need no stinkin' CHANGELOG! Besides, no one is here but me. ;) -drops a pin, waits for echo- Index: Makefile =================================================================== RCS file: /cvsroot/cup-language/cup/src/Makefile,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -r1.10 -r1.11 *** Makefile 22 Aug 2002 14:15:52 -0000 1.10 --- Makefile 22 Aug 2002 18:57:24 -0000 1.11 *************** *** 18,22 **** @echo @echo .... Building cup .... ! $(CC) $(CFLAGS) -DLIBDIR=$(LIBDIRS) -c cup.c $(CC) cup.o ../lib/libcup.a $(LDFLAGS) -o ../bin/cup --- 18,22 ---- @echo @echo .... Building cup .... ! $(CC) $(CFLAGS) -DLIBDIR=\"$(LIBDIR)\" -c cup.c $(CC) cup.o ../lib/libcup.a $(LDFLAGS) -o ../bin/cup *************** *** 24,28 **** @echo @echo .... Building cupc .... ! $(CC) $(CFLAGS) -DLIBDIR=$(LIBDIRS) -c cupc.c $(CC) cupc.o ../lib/libcupc.a $(LDFLAGS) -o ../bin/cupc --- 24,28 ---- @echo @echo .... Building cupc .... ! $(CC) $(CFLAGS) -DLIBDIR=\"$(LIBDIR)\" -c cupc.c $(CC) cupc.o ../lib/libcupc.a $(LDFLAGS) -o ../bin/cupc Index: cup.h.in =================================================================== RCS file: /cvsroot/cup-language/cup/src/cup.h.in,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -r1.12 -r1.13 *** cup.h.in 2 Aug 2002 15:50:44 -0000 1.12 --- cup.h.in 22 Aug 2002 18:57:24 -0000 1.13 *************** *** 132,135 **** --- 132,136 ---- unsigned long datalen; // Length of data section LIST *stack; // Stack + LIST *scopes; // Scopes }; *************** *** 137,140 **** --- 138,142 ---- { int type; + char *name; union { *************** *** 142,146 **** long double val_float; char *val_string; - char *val_variable; } data; --- 144,147 ---- |