mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-06-27 06:48:31 +00:00
Add SectorLambda
This commit is contained in:
parent
741c836e9d
commit
f5831a62fa
21 changed files with 3275 additions and 0 deletions
59
tool/lambda/lambda.mk
Normal file
59
tool/lambda/lambda.mk
Normal file
|
@ -0,0 +1,59 @@
|
|||
#-*-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 += TOOL_LAMBDA
|
||||
|
||||
TOOL_LAMBDA_SRCS := $(wildcard tool/lambda/*.c)
|
||||
|
||||
TOOL_LAMBDA_OBJS = \
|
||||
$(TOOL_LAMBDA_SRCS:%.c=o/$(MODE)/%.o)
|
||||
|
||||
TOOL_LAMBDA_COMS := \
|
||||
$(TOOL_LAMBDA_SRCS:%.c=o/$(MODE)/%.com)
|
||||
|
||||
TOOL_LAMBDA_BINS = \
|
||||
$(TOOL_LAMBDA_COMS) \
|
||||
$(TOOL_LAMBDA_COMS:%=%.dbg)
|
||||
|
||||
TOOL_LAMBDA_DIRECTDEPS = \
|
||||
LIBC_INTRIN \
|
||||
LIBC_LOG \
|
||||
LIBC_MEM \
|
||||
LIBC_CALLS \
|
||||
LIBC_RUNTIME \
|
||||
LIBC_UNICODE \
|
||||
LIBC_FMT \
|
||||
LIBC_STR \
|
||||
LIBC_SYSV \
|
||||
LIBC_STDIO \
|
||||
LIBC_X \
|
||||
LIBC_STUBS \
|
||||
LIBC_NEXGEN32E \
|
||||
TOOL_LAMBDA_LIB \
|
||||
THIRD_PARTY_GETOPT
|
||||
|
||||
TOOL_LAMBDA_DEPS := \
|
||||
$(call uniq,$(foreach x,$(TOOL_LAMBDA_DIRECTDEPS),$($(x))))
|
||||
|
||||
o/$(MODE)/tool/lambda/lambda.pkg: \
|
||||
$(TOOL_LAMBDA_OBJS) \
|
||||
$(foreach x,$(TOOL_LAMBDA_DIRECTDEPS),$($(x)_A).pkg)
|
||||
|
||||
o/$(MODE)/tool/lambda/%.com.dbg: \
|
||||
$(TOOL_LAMBDA_DEPS) \
|
||||
o/$(MODE)/tool/lambda/%.o \
|
||||
o/$(MODE)/tool/lambda/lambda.pkg \
|
||||
$(CRT) \
|
||||
$(APE)
|
||||
@$(APELINK)
|
||||
|
||||
o/$(MODE)/tool/lambda/tromp.o: \
|
||||
OVERRIDE_CFLAGS += \
|
||||
-w
|
||||
|
||||
$(TOOL_LAMBDA_OBJS): \
|
||||
$(BUILD_FILES) \
|
||||
tool/lambda/lambda.mk
|
||||
|
||||
.PHONY: o/$(MODE)/tool/lambda
|
||||
o/$(MODE)/tool/lambda: $(TOOL_LAMBDA_BINS) $(TOOL_LAMBDA_CHECKS)
|
Loading…
Add table
Add a link
Reference in a new issue