Last change
on this file since 1803 was
1803,
checked in by rgrieder, 16 years ago
|
added files for lua 5.1.3, lua 5.0.3, CEGUILua-0.6.1 and CEGUILua-0.5.0b
|
File size:
892 bytes
|
Line | |
---|
1 | # makefile for Lua core library |
---|
2 | |
---|
3 | LUA= .. |
---|
4 | |
---|
5 | include $(LUA)/config |
---|
6 | |
---|
7 | OBJS= \ |
---|
8 | lapi.o \ |
---|
9 | lcode.o \ |
---|
10 | ldebug.o \ |
---|
11 | ldo.o \ |
---|
12 | ldump.o \ |
---|
13 | lfunc.o \ |
---|
14 | lgc.o \ |
---|
15 | llex.o \ |
---|
16 | lmem.o \ |
---|
17 | lobject.o \ |
---|
18 | lopcodes.o \ |
---|
19 | lparser.o \ |
---|
20 | lstate.o \ |
---|
21 | lstring.o \ |
---|
22 | ltable.o \ |
---|
23 | ltests.o \ |
---|
24 | ltm.o \ |
---|
25 | lundump.o \ |
---|
26 | lvm.o \ |
---|
27 | lzio.o |
---|
28 | |
---|
29 | SRCS= \ |
---|
30 | lapi.c \ |
---|
31 | lcode.c \ |
---|
32 | ldebug.c \ |
---|
33 | ldo.c \ |
---|
34 | ldump.c \ |
---|
35 | lfunc.c \ |
---|
36 | lgc.c \ |
---|
37 | llex.c \ |
---|
38 | lmem.c \ |
---|
39 | lobject.c \ |
---|
40 | lopcodes.c \ |
---|
41 | lparser.c \ |
---|
42 | lstate.c \ |
---|
43 | lstring.c \ |
---|
44 | ltable.c \ |
---|
45 | ltests.c \ |
---|
46 | ltm.c \ |
---|
47 | lundump.c \ |
---|
48 | lvm.c \ |
---|
49 | lzio.c \ |
---|
50 | lapi.h \ |
---|
51 | lcode.h \ |
---|
52 | ldebug.h \ |
---|
53 | ldo.h \ |
---|
54 | lfunc.h \ |
---|
55 | lgc.h \ |
---|
56 | llex.h \ |
---|
57 | llimits.h \ |
---|
58 | lmem.h \ |
---|
59 | lobject.h \ |
---|
60 | lopcodes.h \ |
---|
61 | lparser.h \ |
---|
62 | lstate.h \ |
---|
63 | lstring.h \ |
---|
64 | ltable.h \ |
---|
65 | ltm.h \ |
---|
66 | lundump.h \ |
---|
67 | lvm.h \ |
---|
68 | lzio.h |
---|
69 | |
---|
70 | T= $(LIB)/liblua.a |
---|
71 | |
---|
72 | all: $T |
---|
73 | |
---|
74 | $T: $(OBJS) |
---|
75 | $(AR) $@ $(OBJS) |
---|
76 | $(RANLIB) $@ |
---|
77 | |
---|
78 | clean: |
---|
79 | rm -f $(OBJS) $T |
---|
80 | |
---|
81 | co: |
---|
82 | co -q -f -M $(SRCS) |
---|
83 | |
---|
84 | klean: clean |
---|
85 | rm -f $(SRCS) |
---|
Note: See
TracBrowser
for help on using the repository browser.