mirror of https://github.com/rusefi/lua.git
better names for 'y.tab.c' and 'y.tab.h' (now they are moved to 'parser.c' and 'parser.h')
This commit is contained in:
parent
4dce79f7e3
commit
dc97a07e19
4
lex.c
4
lex.c
|
@ -1,4 +1,4 @@
|
||||||
char *rcs_lex = "$Id: lex.c,v 2.12 1994/11/22 16:13:45 roberto Stab $";
|
char *rcs_lex = "$Id: lex.c,v 2.13 1994/12/20 21:20:36 roberto Exp celes $";
|
||||||
|
|
||||||
|
|
||||||
#include <ctype.h>
|
#include <ctype.h>
|
||||||
|
@ -11,7 +11,7 @@ char *rcs_lex = "$Id: lex.c,v 2.12 1994/11/22 16:13:45 roberto Stab $";
|
||||||
#include "table.h"
|
#include "table.h"
|
||||||
#include "opcode.h"
|
#include "opcode.h"
|
||||||
#include "inout.h"
|
#include "inout.h"
|
||||||
#include "y.tab.h"
|
#include "parser.h"
|
||||||
#include "ugly.h"
|
#include "ugly.h"
|
||||||
|
|
||||||
#define lua_strcmp(a,b) (a[0]<b[0]?(-1):(a[0]>b[0]?(1):strcmp(a,b)))
|
#define lua_strcmp(a,b) (a[0]<b[0]?(-1):(a[0]>b[0]?(1):strcmp(a,b)))
|
||||||
|
|
16
makefile
16
makefile
|
@ -1,4 +1,4 @@
|
||||||
# $Id: makefile,v 1.9 1994/11/23 20:15:04 roberto Exp roberto $
|
# $Id: makefile,v 1.10 1994/12/23 20:47:59 roberto Exp celes $
|
||||||
# Compilation parameters
|
# Compilation parameters
|
||||||
CC = gcc
|
CC = gcc
|
||||||
CFLAGS = -I/usr/5include -Wall -Wmissing-prototypes -Wshadow -ansi -O2
|
CFLAGS = -I/usr/5include -Wall -Wmissing-prototypes -Wshadow -ansi -O2
|
||||||
|
@ -11,7 +11,7 @@ ARFLAGS = rvl
|
||||||
|
|
||||||
# Aplication modules
|
# Aplication modules
|
||||||
LUAMOD = \
|
LUAMOD = \
|
||||||
y.tab \
|
parser \
|
||||||
lex \
|
lex \
|
||||||
opcode \
|
opcode \
|
||||||
hash \
|
hash \
|
||||||
|
@ -33,7 +33,7 @@ LIBOBJS = $(LIBMOD:%=%.o)
|
||||||
lua : lua.o lua.a lualib.a
|
lua : lua.o lua.a lualib.a
|
||||||
$(CC) $(CFLAGS) -o $@ lua.c lua.a lualib.a -lm
|
$(CC) $(CFLAGS) -o $@ lua.c lua.a lualib.a -lm
|
||||||
|
|
||||||
lua.a : y.tab.c $(LUAOBJS)
|
lua.a : parser.c $(LUAOBJS)
|
||||||
$(AR) $(ARFLAGS) $@ $?
|
$(AR) $(ARFLAGS) $@ $?
|
||||||
ranlib lua.a
|
ranlib lua.a
|
||||||
|
|
||||||
|
@ -48,13 +48,13 @@ liblua.so.1.0 : lua.o
|
||||||
$(CC) $(CFLAGS) -c -o $@ $<
|
$(CC) $(CFLAGS) -c -o $@ $<
|
||||||
|
|
||||||
|
|
||||||
y.tab.c : lua.stx exscript
|
parser.c : lua.stx exscript
|
||||||
yacc -d lua.stx ; ex y.tab.c <exscript
|
yacc -d lua.stx ; mv -f y.tab.c parser.c ; mv -f y.tab.h parser.h ; ex parser.c <exscript
|
||||||
|
|
||||||
clear :
|
clear :
|
||||||
rcsclean
|
rcsclean
|
||||||
rm -f *.o
|
rm -f *.o
|
||||||
rm -f y.tab.c y.tab.h
|
rm -f parser.c parser.h
|
||||||
co lua.h lualib.h
|
co lua.h lualib.h
|
||||||
|
|
||||||
% : RCS/%,v
|
% : RCS/%,v
|
||||||
|
@ -65,7 +65,7 @@ fallback.o : fallback.c mem.h fallback.h opcode.h lua.h types.h tree.h inout.h
|
||||||
hash.o : hash.c mem.h opcode.h lua.h types.h tree.h hash.h inout.h table.h
|
hash.o : hash.c mem.h opcode.h lua.h types.h tree.h hash.h inout.h table.h
|
||||||
inout.o : inout.c mem.h opcode.h lua.h types.h tree.h hash.h inout.h table.h
|
inout.o : inout.c mem.h opcode.h lua.h types.h tree.h hash.h inout.h table.h
|
||||||
iolib.o : iolib.c mem.h lua.h lualib.h
|
iolib.o : iolib.c mem.h lua.h lualib.h
|
||||||
lex.o : lex.c tree.h types.h table.h opcode.h lua.h inout.h y.tab.h ugly.h
|
lex.o : lex.c tree.h types.h table.h opcode.h lua.h inout.h parser.h ugly.h
|
||||||
lua.o : lua.c lua.h lualib.h
|
lua.o : lua.c lua.h lualib.h
|
||||||
mathlib.o : mathlib.c lualib.h lua.h
|
mathlib.o : mathlib.c lualib.h lua.h
|
||||||
mem.o : mem.c mem.h lua.h
|
mem.o : mem.c mem.h lua.h
|
||||||
|
@ -75,4 +75,4 @@ strlib.o : strlib.c mem.h lua.h lualib.h
|
||||||
table.o : table.c mem.h opcode.h lua.h types.h tree.h hash.h inout.h table.h \
|
table.o : table.c mem.h opcode.h lua.h types.h tree.h hash.h inout.h table.h \
|
||||||
fallback.h
|
fallback.h
|
||||||
tree.o : tree.c mem.h lua.h tree.h types.h table.h opcode.h
|
tree.o : tree.c mem.h lua.h tree.h types.h table.h opcode.h
|
||||||
y.tab.o : y.tab.c mem.h opcode.h lua.h types.h tree.h hash.h inout.h table.h
|
parser.o : parser.c mem.h opcode.h lua.h types.h tree.h hash.h inout.h table.h
|
||||||
|
|
Loading…
Reference in New Issue