blob: 4517d82b4b10e05a1ec39a6e9ff89fd98f82df55 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
# makefile for Lua compiler
LUA= ../..
include $(LUA)/config
INCS= -I$(INC) $(EXTRA_INCS) -I..
OBJS= dump.o luac.o opt.o print.o stubs.o
SRCS= dump.c luac.c opt.c print.c stubs.c luac.h print.h
T= $(BIN)/luac
all: $T
$T: $(OBJS) $(LIB)/liblua.a
$(CC) -o $@ $(OBJS) -L$(LIB) -llua
$(LIB)/liblua.a:
cd ..; $(MAKE)
clean:
rm -f $(OBJS) $T
co:
co -q -f -M $(SRCS)
klean: clean
rm -f $(SRCS)
|