mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-01-31 11:37:35 +00:00
d26d7ae0e4
Building o//third_party/python now takes 5 seconds on my PC This change works towards modifying Python to use runtime dispatching when appropriate. For example, when loading the magnums in the socket module, it's a good idea to check if the magnum is zero, because that means the local system platform doesn't support it.
81 lines
2.2 KiB
Makefile
81 lines
2.2 KiB
Makefile
#-*-mode:makefile-gmake;indent-tabs-mode:t;tab-width:8;coding:utf-8-*-┐
|
|
#───vi: set et ft=make ts=8 tw=8 fenc=utf-8 :vi───────────────────────┘
|
|
|
|
PKGS += THIRD_PARTY_LUA
|
|
|
|
THIRD_PARTY_LUA_FILES := $(wildcard third_party/lua/*)
|
|
THIRD_PARTY_LUA_SRCS = $(filter %.c,$(THIRD_PARTY_LUA_FILES))
|
|
THIRD_PARTY_LUA_HDRS = $(filter %.h,$(THIRD_PARTY_LUA_FILES))
|
|
THIRD_PARTY_LUA_BINS = $(THIRD_PARTY_LUA_COMS) $(THIRD_PARTY_LUA_COMS:%=%.dbg)
|
|
THIRD_PARTY_LUA = $(THIRD_PARTY_LUA_DEPS) $(THIRD_PARTY_LUA_A)
|
|
THIRD_PARTY_LUA_A = o/$(MODE)/third_party/lua/lua.a
|
|
|
|
THIRD_PARTY_LUA_OBJS = \
|
|
$(THIRD_PARTY_LUA_SRCS:%.c=o/$(MODE)/%.o)
|
|
|
|
THIRD_PARTY_LUA_COMS = \
|
|
o/$(MODE)/third_party/lua/lua.com \
|
|
o/$(MODE)/third_party/lua/luac.com
|
|
|
|
THIRD_PARTY_LUA_CHECKS = \
|
|
$(THIRD_PARTY_LUA_A).pkg \
|
|
$(THIRD_PARTY_LUA_HDRS:%=o/$(MODE)/%.ok)
|
|
|
|
THIRD_PARTY_LUA_DIRECTDEPS = \
|
|
LIBC_CALLS \
|
|
LIBC_FMT \
|
|
LIBC_INTRIN \
|
|
LIBC_MEM \
|
|
LIBC_NEXGEN32E \
|
|
LIBC_RUNTIME \
|
|
LIBC_STDIO \
|
|
LIBC_STR \
|
|
LIBC_SYSV \
|
|
LIBC_TIME \
|
|
LIBC_TINYMATH \
|
|
LIBC_UNICODE \
|
|
THIRD_PARTY_GDTOA
|
|
|
|
THIRD_PARTY_LUA_DEPS := \
|
|
$(call uniq,$(foreach x,$(THIRD_PARTY_LUA_DIRECTDEPS),$($(x))))
|
|
|
|
$(THIRD_PARTY_LUA_A): \
|
|
third_party/lua/ \
|
|
$(THIRD_PARTY_LUA_A).pkg \
|
|
$(filter-out %.main.o,$(THIRD_PARTY_LUA_OBJS))
|
|
|
|
$(THIRD_PARTY_LUA_A).pkg: \
|
|
$(THIRD_PARTY_LUA_OBJS) \
|
|
$(foreach x,$(THIRD_PARTY_LUA_DIRECTDEPS),$($(x)_A).pkg)
|
|
|
|
o/$(MODE)/third_party/lua/lua.com.dbg: \
|
|
$(THIRD_PARTY_LUA_DEPS) \
|
|
$(THIRD_PARTY_LUA_A) \
|
|
$(THIRD_PARTY_LUA_A).pkg \
|
|
o/$(MODE)/third_party/lua/lua.main.o \
|
|
$(CRT) \
|
|
$(APE)
|
|
-@$(APELINK)
|
|
|
|
o/$(MODE)/third_party/lua/luac.com.dbg: \
|
|
$(THIRD_PARTY_LUA_DEPS) \
|
|
$(THIRD_PARTY_LUA_A) \
|
|
$(THIRD_PARTY_LUA_A).pkg \
|
|
o/$(MODE)/third_party/lua/luac.main.o \
|
|
$(CRT) \
|
|
$(APE)
|
|
-@$(APELINK)
|
|
|
|
o/$(MODE)/third_party/lua/lauxlib.o: \
|
|
OVERRIDE_CFLAGS += \
|
|
-DSTACK_FRAME_UNLIMITED
|
|
|
|
$(THIRD_PARTY_LUA_OBJS): \
|
|
OVERRIDE_CFLAGS += \
|
|
-ffunction-sections \
|
|
-fdata-sections
|
|
|
|
.PHONY: o/$(MODE)/third_party/lua
|
|
o/$(MODE)/third_party/lua: \
|
|
$(THIRD_PARTY_LUA_BINS) \
|
|
$(THIRD_PARTY_LUA_CHECKS)
|