mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-05-28 08:12:28 +00:00
Initial import
This commit is contained in:
commit
c91b3c5006
14915 changed files with 590219 additions and 0 deletions
64
libc/stdio/stdio.mk
Normal file
64
libc/stdio/stdio.mk
Normal file
|
@ -0,0 +1,64 @@
|
|||
#-*-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 += LIBC_STDIO
|
||||
|
||||
LIBC_STDIO_ARTIFACTS += LIBC_STDIO_A
|
||||
LIBC_STDIO = $(LIBC_STDIO_A_DEPS) $(LIBC_STDIO_A)
|
||||
LIBC_STDIO_A = o/$(MODE)/libc/stdio/stdio.a
|
||||
LIBC_STDIO_A_FILES := $(wildcard libc/stdio/*) $(wildcard libc/stdio/unlocked/*)
|
||||
LIBC_STDIO_A_HDRS = $(filter %.h,$(LIBC_STDIO_A_FILES))
|
||||
LIBC_STDIO_A_SRCS_S = $(filter %.S,$(LIBC_STDIO_A_FILES))
|
||||
LIBC_STDIO_A_SRCS_C = $(filter %.c,$(LIBC_STDIO_A_FILES))
|
||||
|
||||
LIBC_STDIO_A_SRCS = \
|
||||
$(LIBC_STDIO_A_SRCS_S) \
|
||||
$(LIBC_STDIO_A_SRCS_C)
|
||||
|
||||
LIBC_STDIO_A_OBJS = \
|
||||
$(LIBC_STDIO_A_SRCS:%=o/$(MODE)/%.zip.o) \
|
||||
$(LIBC_STDIO_A_SRCS_S:%.S=o/$(MODE)/%.o) \
|
||||
$(LIBC_STDIO_A_SRCS_C:%.c=o/$(MODE)/%.o)
|
||||
|
||||
LIBC_STDIO_A_CHECKS = \
|
||||
$(LIBC_STDIO_A).pkg \
|
||||
$(LIBC_STDIO_A_HDRS:%=o/$(MODE)/%.ok)
|
||||
|
||||
LIBC_STDIO_A_DIRECTDEPS = \
|
||||
LIBC_ALG \
|
||||
LIBC_BITS \
|
||||
LIBC_CALLS \
|
||||
LIBC_CALLS_HEFTY \
|
||||
LIBC_CONV \
|
||||
LIBC_ESCAPE \
|
||||
LIBC_FMT \
|
||||
LIBC_MEM \
|
||||
LIBC_NEXGEN32E \
|
||||
LIBC_STUBS \
|
||||
LIBC_STR \
|
||||
LIBC_RAND \
|
||||
LIBC_RUNTIME \
|
||||
LIBC_NT_KERNELBASE \
|
||||
LIBC_SYSV \
|
||||
LIBC_SYSV_CALLS
|
||||
|
||||
LIBC_STDIO_A_DEPS := \
|
||||
$(call uniq,$(foreach x,$(LIBC_STDIO_A_DIRECTDEPS),$($(x))))
|
||||
|
||||
$(LIBC_STDIO_A):libc/stdio/ \
|
||||
$(LIBC_STDIO_A).pkg \
|
||||
$(LIBC_STDIO_A_OBJS)
|
||||
|
||||
$(LIBC_STDIO_A).pkg: \
|
||||
$(LIBC_STDIO_A_OBJS) \
|
||||
$(foreach x,$(LIBC_STDIO_A_DIRECTDEPS),$($(x)_A).pkg)
|
||||
|
||||
LIBC_STDIO_LIBS = $(foreach x,$(LIBC_STDIO_ARTIFACTS),$($(x)))
|
||||
LIBC_STDIO_SRCS = $(foreach x,$(LIBC_STDIO_ARTIFACTS),$($(x)_SRCS))
|
||||
LIBC_STDIO_HDRS = $(foreach x,$(LIBC_STDIO_ARTIFACTS),$($(x)_HDRS))
|
||||
LIBC_STDIO_CHECKS = $(foreach x,$(LIBC_STDIO_ARTIFACTS),$($(x)_CHECKS))
|
||||
LIBC_STDIO_OBJS = $(foreach x,$(LIBC_STDIO_ARTIFACTS),$($(x)_OBJS))
|
||||
$(LIBC_STDIO_OBJS): $(BUILD_FILES) libc/stdio/stdio.mk
|
||||
|
||||
.PHONY: o/$(MODE)/libc/stdio
|
||||
o/$(MODE)/libc/stdio: $(LIBC_STDIO_CHECKS)
|
Loading…
Add table
Add a link
Reference in a new issue