forked from lua/lua
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathmakefile
166 lines (136 loc) · 5.89 KB
/
makefile
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
# makefile for building Lua
# see INSTALL for installation instructions
# see ../Makefile and luaconf.h for further customization
# == CHANGE THE SETTINGS BELOW TO SUIT YOUR ENVIRONMENT =======================
CWARNS= -pedantic -Wcast-align -Wpointer-arith -Wshadow \
-Wsign-compare -Wundef -Wwrite-strings
# -Wcast-qual
# -DEXTERNMEMCHECK -DHARDSTACKTESTS
# -g -DLUA_USER_H='"ltests.h"'
# -fomit-frame-pointer #-pg -malign-double
TESTS= -g -DLUA_USER_H='"ltests.h"'
LOCAL = $(CWARNS)
CC= g++
CFLAGS= -Wall -Wno-deprecated -std=c++17 $(MYCFLAGS) -O2
AR= ar rcu
RANLIB= ranlib
RM= rm -f
MYCFLAGS= $(LOCAL)
MYLDFLAGS=
MYLIBS=
# enable Linux goodies
ifneq ($(OS),Windows_NT)
MYCFLAGS= $(LOCAL) -DLUA_USE_LINUX
MYLDFLAGS= -Wl,-E
MYLIBS= -ldl
endif
MYLIBS= -lreadline -lhistory
# == END OF USER SETTINGS. NO NEED TO CHANGE ANYTHING BELOW THIS LINE =========
LIBS = -lm
CORE_T= liblua.a
CORE_O= lapi.o lcode.o ldebug.o ldo.o ldump.o lfunc.o lgc.o llex.o lmem.o \
lobject.o lopcodes.o lparser.o lstate.o lstring.o ltable.o ltm.o \
lundump.o lvm.o lzio.o lctype.o eris.o
AUX_O= lauxlib.o
LIB_O= lbaselib.o lcorolib.o ldblib.o ltablib.o lstrlib.o lpico8lib.o linit.o
LUA_T= z8lua
LUA_O= lua.o
#LUAC_T= luac
#LUAC_O= luac.o print.o
ALL_T= $(CORE_T) $(LUA_T) $(LUAC_T)
ALL_O= $(CORE_O) $(LUA_O) $(LUAC_O) $(AUX_O) $(LIB_O)
ALL_A= $(CORE_T)
all: $(ALL_T)
o: $(ALL_O)
a: $(ALL_A)
$(CORE_T): $(CORE_O) $(AUX_O) $(LIB_O)
$(AR) $@ $?
$(RANLIB) $@
$(LUA_T): $(LUA_O) $(CORE_T)
$(CC) -o $@ $(MYLDFLAGS) $(LUA_O) $(CORE_T) $(LIBS) $(MYLIBS) $(DL)
$(LUAC_T): $(LUAC_O) $(CORE_T)
$(CC) -o $@ $(MYLDFLAGS) $(LUAC_O) $(CORE_T) $(LIBS) $(MYLIBS)
clean:
rcsclean -u || true
$(RM) $(ALL_T) $(ALL_O)
depend:
@$(CC) $(CFLAGS) -MM *.c
echo:
@echo "CC = $(CC)"
@echo "CFLAGS = $(CFLAGS)"
@echo "AR = $(AR)"
@echo "RANLIB = $(RANLIB)"
@echo "RM = $(RM)"
@echo "MYCFLAGS = $(MYCFLAGS)"
@echo "MYLDFLAGS = $(MYLDFLAGS)"
@echo "MYLIBS = $(MYLIBS)"
@echo "DL = $(DL)"
# DO NOT DELETE
lapi.o: lapi.c lua.h luaconf.h fix32.h lapi.h llimits.h lstate.h \
lobject.h ltm.h lzio.h lmem.h ldebug.h ldo.h lfunc.h lgc.h lstring.h \
ltable.h lundump.h lvm.h
lauxlib.o: lauxlib.c lua.h luaconf.h fix32.h lauxlib.h
lbaselib.o: lbaselib.c lua.h luaconf.h fix32.h lauxlib.h lualib.h
lbitlib.o: lbitlib.c lua.h luaconf.h fix32.h lauxlib.h lualib.h
lcode.o: lcode.c lua.h luaconf.h fix32.h lcode.h llex.h lobject.h \
llimits.h lzio.h lmem.h lopcodes.h lparser.h ldebug.h lstate.h ltm.h \
ldo.h lgc.h lstring.h ltable.h lvm.h
lcorolib.o: lcorolib.c lua.h luaconf.h fix32.h lauxlib.h lualib.h
lctype.o: lctype.c lctype.h lua.h luaconf.h fix32.h llimits.h
ldblib.o: ldblib.c lua.h luaconf.h fix32.h lauxlib.h lualib.h
ldebug.o: ldebug.c lua.h luaconf.h fix32.h lapi.h llimits.h lstate.h \
lobject.h ltm.h lzio.h lmem.h lcode.h llex.h lopcodes.h lparser.h \
ldebug.h ldo.h lfunc.h lstring.h lgc.h ltable.h lvm.h
ldo.o: ldo.c lua.h luaconf.h fix32.h lapi.h llimits.h lstate.h lobject.h \
ltm.h lzio.h lmem.h ldebug.h ldo.h lfunc.h lgc.h lopcodes.h lparser.h \
lstring.h ltable.h lundump.h lvm.h
ldump.o: ldump.c lua.h luaconf.h fix32.h lobject.h llimits.h lstate.h \
ltm.h lzio.h lmem.h lundump.h
lfunc.o: lfunc.c lua.h luaconf.h fix32.h lfunc.h lobject.h llimits.h \
lgc.h lstate.h ltm.h lzio.h lmem.h
lgc.o: lgc.c lua.h luaconf.h fix32.h ldebug.h lstate.h lobject.h \
llimits.h ltm.h lzio.h lmem.h ldo.h lfunc.h lgc.h lstring.h ltable.h
linit.o: linit.c lua.h luaconf.h fix32.h lualib.h lauxlib.h
liolib.o: liolib.c lua.h luaconf.h fix32.h lauxlib.h lualib.h
llex.o: llex.c lua.h luaconf.h fix32.h lctype.h llimits.h ldo.h lobject.h \
lstate.h ltm.h lzio.h lmem.h llex.h lparser.h lstring.h lgc.h ltable.h
lmathlib.o: lmathlib.c lua.h luaconf.h fix32.h lauxlib.h lualib.h
lmem.o: lmem.c lua.h luaconf.h fix32.h ldebug.h lstate.h lobject.h \
llimits.h ltm.h lzio.h lmem.h ldo.h lgc.h
loadlib.o: loadlib.c lua.h luaconf.h fix32.h lauxlib.h lualib.h
lobject.o: lobject.c lua.h luaconf.h fix32.h lctype.h llimits.h ldebug.h \
lstate.h lobject.h ltm.h lzio.h lmem.h ldo.h lstring.h lgc.h lvm.h
lopcodes.o: lopcodes.c lopcodes.h llimits.h lua.h luaconf.h fix32.h
loslib.o: loslib.c lua.h luaconf.h fix32.h lauxlib.h lualib.h
lparser.o: lparser.c lua.h luaconf.h fix32.h lcode.h llex.h lobject.h \
llimits.h lzio.h lmem.h lopcodes.h lparser.h ldebug.h lstate.h ltm.h \
ldo.h lfunc.h lstring.h lgc.h ltable.h
lpico8lib.o: lpico8lib.c lua.h luaconf.h fix32.h lauxlib.h llimits.h \
lobject.h lstate.h ltm.h lzio.h lmem.h
lstate.o: lstate.c lua.h luaconf.h fix32.h lapi.h llimits.h lstate.h \
lobject.h ltm.h lzio.h lmem.h ldebug.h ldo.h lfunc.h lgc.h llex.h \
lstring.h ltable.h
lstring.o: lstring.c lua.h luaconf.h fix32.h lmem.h llimits.h lobject.h \
lstate.h ltm.h lzio.h lstring.h lgc.h
lstrlib.o: lstrlib.c lua.h luaconf.h fix32.h lauxlib.h lualib.h
ltable.o: ltable.c lua.h luaconf.h fix32.h ldebug.h lstate.h lobject.h \
llimits.h ltm.h lzio.h lmem.h ldo.h lgc.h lstring.h ltable.h lvm.h
ltablib.o: ltablib.c lua.h luaconf.h fix32.h lauxlib.h lualib.h
ltests.o: ltests.c lua.h luaconf.h fix32.h lapi.h llimits.h lstate.h \
lobject.h ltm.h lzio.h lmem.h lauxlib.h lcode.h llex.h lopcodes.h \
lparser.h lctype.h ldebug.h ldo.h lfunc.h lstring.h lgc.h ltable.h \
lualib.h
ltm.o: ltm.c lua.h luaconf.h fix32.h lobject.h llimits.h lstate.h ltm.h \
lzio.h lmem.h lstring.h lgc.h ltable.h
lua.o: lua.c lua.h luaconf.h fix32.h lauxlib.h lualib.h
lundump.o: lundump.c lua.h luaconf.h fix32.h ldebug.h lstate.h lobject.h \
llimits.h ltm.h lzio.h lmem.h ldo.h lfunc.h lstring.h lgc.h lundump.h
lvm.o: lvm.c lua.h luaconf.h fix32.h ldebug.h lstate.h lobject.h \
llimits.h ltm.h lzio.h lmem.h ldo.h lfunc.h lgc.h lopcodes.h lstring.h \
ltable.h lvm.h
lzio.o: lzio.c lua.h luaconf.h fix32.h llimits.h lmem.h lstate.h \
lobject.h ltm.h lzio.h
eris.o: eris.c lua.h luaconf.h lauxlib.h lualib.h ldebug.h lstate.h \
lobject.h llimits.h ltm.h lzio.h lmem.h ldo.h lfunc.h lstring.h lgc.h \
eris.h
# (end of Makefile)