mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-01-31 03:27:39 +00:00
d7c79f43ef
- Found some bugs in LLVM compiler-rt library - The useless LIBC_STUBS package is now deleted - Improve the overflow checking story even further - Get chibicc tests working in MODE=dbg mode again - The libc/isystem/ headers now have correctly named guards
73 lines
2 KiB
Makefile
73 lines
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 += DSP_TTY
|
|
|
|
DSP_TTY_ARTIFACTS += DSP_TTY_A
|
|
DSP_TTY = $(DSP_TTY_A_DEPS) $(DSP_TTY_A)
|
|
DSP_TTY_A = o/$(MODE)/dsp/tty/tty.a
|
|
DSP_TTY_A_FILES := $(wildcard dsp/tty/*)
|
|
DSP_TTY_A_HDRS = $(filter %.h,$(DSP_TTY_A_FILES))
|
|
DSP_TTY_A_SRCS_S = $(filter %.S,$(DSP_TTY_A_FILES))
|
|
DSP_TTY_A_SRCS_C = $(filter %.c,$(DSP_TTY_A_FILES))
|
|
|
|
DSP_TTY_A_SRCS = \
|
|
$(DSP_TTY_A_SRCS_S) \
|
|
$(DSP_TTY_A_SRCS_C)
|
|
|
|
DSP_TTY_A_OBJS = \
|
|
$(DSP_TTY_A_SRCS_S:%.S=o/$(MODE)/%.o) \
|
|
$(DSP_TTY_A_SRCS_C:%.c=o/$(MODE)/%.o)
|
|
|
|
DSP_TTY_A_CHECKS = \
|
|
$(DSP_TTY_A).pkg \
|
|
$(DSP_TTY_A_HDRS:%=o/$(MODE)/%.ok)
|
|
|
|
DSP_TTY_A_DIRECTDEPS = \
|
|
DSP_CORE \
|
|
LIBC_CALLS \
|
|
LIBC_FMT \
|
|
LIBC_INTRIN \
|
|
LIBC_LOG \
|
|
LIBC_RUNTIME \
|
|
LIBC_MEM \
|
|
LIBC_NEXGEN32E \
|
|
LIBC_NT_KERNEL32 \
|
|
LIBC_STR \
|
|
LIBC_STDIO \
|
|
LIBC_SOCK \
|
|
LIBC_SYSV \
|
|
LIBC_TINYMATH \
|
|
LIBC_TIME \
|
|
LIBC_X
|
|
|
|
DSP_TTY_A_DEPS := \
|
|
$(call uniq,$(foreach x,$(DSP_TTY_A_DIRECTDEPS),$($(x))))
|
|
|
|
$(DSP_TTY_A): dsp/tty/ \
|
|
$(DSP_TTY_A).pkg \
|
|
$(DSP_TTY_A_OBJS)
|
|
|
|
$(DSP_TTY_A).pkg: \
|
|
$(DSP_TTY_A_OBJS) \
|
|
$(foreach x,$(DSP_TTY_A_DIRECTDEPS),$($(x)_A).pkg)
|
|
|
|
o/$(MODE)/dsp/tty/ttyraster.o: private \
|
|
CFLAGS += \
|
|
$(MATHEMATICAL)
|
|
|
|
ifeq ($(ARCH), aarch64)
|
|
# takes 14 seconds to compile with aarch64 gcc
|
|
o/$(MODE)/dsp/tty/ttyraster.o: private CFLAGS += -O1
|
|
o/$(MODE)/dsp/tty/ttyraster.o: private QUOTA += -C128
|
|
endif
|
|
|
|
DSP_TTY_LIBS = $(foreach x,$(DSP_TTY_ARTIFACTS),$($(x)))
|
|
DSP_TTY_SRCS = $(foreach x,$(DSP_TTY_ARTIFACTS),$($(x)_SRCS))
|
|
DSP_TTY_HDRS = $(foreach x,$(DSP_TTY_ARTIFACTS),$($(x)_HDRS))
|
|
DSP_TTY_CHECKS = $(foreach x,$(DSP_TTY_ARTIFACTS),$($(x)_CHECKS))
|
|
DSP_TTY_OBJS = $(foreach x,$(DSP_TTY_ARTIFACTS),$($(x)_OBJS))
|
|
$(DSP_TTY_OBJS): $(BUILD_FILES) dsp/tty/tty.mk
|
|
|
|
.PHONY: o/$(MODE)/dsp/tty
|
|
o/$(MODE)/dsp/tty: $(DSP_TTY_CHECKS)
|