mirror of https://github.com/lua/lua.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
187 lines
6.1 KiB
187 lines
6.1 KiB
# 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 =======================
|
|
|
|
CWARNSC=-pedantic -Wextra \
|
|
-Waggregate-return \
|
|
-Wcast-align \
|
|
-Wdisabled-optimization \
|
|
-Wpointer-arith \
|
|
-Wshadow \
|
|
-Wsign-compare \
|
|
-Wundef \
|
|
-Wwrite-strings \
|
|
-Wredundant-decls \
|
|
-Wdisabled-optimization \
|
|
-Wstrict-aliasing \
|
|
# the next warnings generate to much noise, so they are disabled
|
|
# -Wsign-conversion \
|
|
# -Wconversion \
|
|
# -Wlogical-op \
|
|
# -Wstrict-overflow=2 \
|
|
# -Wformat=2 \
|
|
# -Wcast-qual \
|
|
|
|
# The next warnings are not valid for C++
|
|
CWARNS= $(CWARNSC) \
|
|
-Wdeclaration-after-statement \
|
|
-Wmissing-prototypes \
|
|
-Wnested-externs \
|
|
-Wstrict-prototypes \
|
|
-Wc++-compat \
|
|
-Wold-style-definition \
|
|
|
|
|
|
# -DEXTERNMEMCHECK -DHARDSTACKTESTS -DHARDMEMTESTS -DTRACEMEM='"tempmem"'
|
|
# -g -DLUA_USER_H='"ltests.h"'
|
|
# -fomit-frame-pointer #-pg -malign-double
|
|
# -DLUA_USE_CTYPE -DLUA_USE_APICHECK
|
|
TESTS= -DLUA_USER_H='"ltests.h"'
|
|
|
|
# -mtune=native -fomit-frame-pointer
|
|
LOCAL = $(TESTS) $(CWARNS) -g
|
|
|
|
|
|
|
|
# enable Linux goodies
|
|
MYCFLAGS= $(LOCAL) -DLUA_USE_LINUX -DLUA_COMPAT_ALL
|
|
MYLDFLAGS= $(LOCAL) -Wl,-E
|
|
MYLIBS= -ldl -lreadline -lhistory -lncurses
|
|
|
|
|
|
CC= gcc
|
|
CFLAGS= -Wall -O2 $(MYCFLAGS)
|
|
# CC= ~lhf/sunstudio12/bin/cc
|
|
# CFLAGS= -xO5 -v -Xc -native -xstrconst
|
|
AR= ar rcu
|
|
RANLIB= ranlib
|
|
RM= rm -f
|
|
|
|
|
|
|
|
# == END OF USER SETTINGS. NO NEED TO CHANGE ANYTHING BELOW THIS LINE =========
|
|
|
|
|
|
LIBS = -lm
|
|
|
|
CORE_T= liblua.a
|
|
CORE_O= lapi.o lcode.o lctype.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 ltests.o
|
|
AUX_O= lauxlib.o
|
|
LIB_O= lbaselib.o ldblib.o liolib.o lmathlib.o loslib.o ltablib.o lstrlib.o \
|
|
lbitlib.o loadlib.o lcorolib.o linit.o
|
|
|
|
LUA_T= lua
|
|
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
|
|
$(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)"
|
|
|
|
$(ALL_O): makefile
|
|
|
|
# DO NOT DELETE
|
|
# automatically made with 'gcc -MM'
|
|
|
|
lapi.o: lapi.c lua.h luaconf.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 lauxlib.h
|
|
lbaselib.o: lbaselib.c lua.h luaconf.h lauxlib.h lualib.h
|
|
lbitlib.o: lbitlib.c lua.h luaconf.h lauxlib.h lualib.h
|
|
lcode.o: lcode.c lua.h luaconf.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 lauxlib.h lualib.h
|
|
lctype.o: lctype.c lctype.h lua.h luaconf.h llimits.h
|
|
ldblib.o: ldblib.c lua.h luaconf.h lauxlib.h lualib.h
|
|
ldebug.o: ldebug.c lua.h luaconf.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 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 lobject.h llimits.h lstate.h ltm.h \
|
|
lzio.h lmem.h lundump.h
|
|
lfunc.o: lfunc.c lua.h luaconf.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 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 lualib.h lauxlib.h
|
|
liolib.o: liolib.c lua.h luaconf.h lauxlib.h lualib.h
|
|
llex.o: llex.c lua.h luaconf.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 lauxlib.h lualib.h
|
|
lmem.o: lmem.c lua.h luaconf.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 lauxlib.h lualib.h
|
|
lobject.o: lobject.c lua.h luaconf.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
|
|
loslib.o: loslib.c lua.h luaconf.h lauxlib.h lualib.h
|
|
lparser.o: lparser.c lua.h luaconf.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
|
|
lstate.o: lstate.c lua.h luaconf.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 lmem.h llimits.h lobject.h lstate.h \
|
|
ltm.h lzio.h lstring.h lgc.h
|
|
lstrlib.o: lstrlib.c lua.h luaconf.h lauxlib.h lualib.h
|
|
ltable.o: ltable.c lua.h luaconf.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 lauxlib.h lualib.h
|
|
ltests.o: ltests.c lua.h luaconf.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 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 lauxlib.h lualib.h
|
|
lundump.o: lundump.c lua.h luaconf.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 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 llimits.h lmem.h lstate.h lobject.h ltm.h \
|
|
lzio.h
|
|
|
|
# (end of Makefile)
|
|
|