mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-01-31 03:27:39 +00:00
fd34ef732d
- Utilities like pledge.com now build - kprintf() will no longer balk at 48-bit addresses - There's a new aarch64-dbg build mode that should work - gc() and defer() are mostly pacified; avoid using them on aarch64 - THIRD_PART_STB now has Arm Neon intrinsics for fast image handling
62 lines
1.8 KiB
Makefile
62 lines
1.8 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 += NET_HTTPS
|
|
|
|
NET_HTTPS_ARTIFACTS += NET_HTTPS_A
|
|
NET_HTTPS = $(NET_HTTPS_A_DEPS) $(NET_HTTPS_A)
|
|
NET_HTTPS_A = o/$(MODE)/net/https/https.a
|
|
NET_HTTPS_A_FILES := $(wildcard net/https/*)
|
|
NET_HTTPS_A_CERTS := $(wildcard usr/share/ssl/root/*)
|
|
NET_HTTPS_A_HDRS = $(filter %.h,$(NET_HTTPS_A_FILES))
|
|
NET_HTTPS_A_SRCS = $(filter %.c,$(NET_HTTPS_A_FILES))
|
|
|
|
NET_HTTPS_A_OBJS = \
|
|
o/$(MODE)/usr/share/ssl/root/.zip.o \
|
|
$(NET_HTTPS_A_SRCS:%.c=o/$(MODE)/%.o) \
|
|
$(NET_HTTPS_A_CERTS:%=o/$(MODE)/%.zip.o)
|
|
|
|
NET_HTTPS_A_CHECKS = \
|
|
$(NET_HTTPS_A).pkg \
|
|
$(NET_HTTPS_A_HDRS:%=o/$(MODE)/%.ok)
|
|
|
|
NET_HTTPS_A_DIRECTDEPS = \
|
|
LIBC_CALLS \
|
|
LIBC_FMT \
|
|
LIBC_INTRIN \
|
|
LIBC_LOG \
|
|
LIBC_MEM \
|
|
LIBC_NEXGEN32E \
|
|
LIBC_RUNTIME \
|
|
LIBC_STDIO \
|
|
LIBC_STR \
|
|
LIBC_STUBS \
|
|
LIBC_SYSV \
|
|
LIBC_TIME \
|
|
LIBC_X \
|
|
LIBC_ZIPOS \
|
|
THIRD_PARTY_COMPILER_RT \
|
|
THIRD_PARTY_MBEDTLS
|
|
|
|
NET_HTTPS_A_DEPS := \
|
|
$(call uniq,$(foreach x,$(NET_HTTPS_A_DIRECTDEPS),$($(x))))
|
|
|
|
$(NET_HTTPS_A): net/https/ \
|
|
$(NET_HTTPS_A).pkg \
|
|
$(NET_HTTPS_A_OBJS)
|
|
|
|
$(NET_HTTPS_A).pkg: \
|
|
$(NET_HTTPS_A_OBJS) \
|
|
$(foreach x,$(NET_HTTPS_A_DIRECTDEPS),$($(x)_A).pkg)
|
|
|
|
o/$(MODE)/usr/share/ssl/root/.zip.o: \
|
|
usr/share/ssl/root
|
|
|
|
NET_HTTPS_LIBS = $(foreach x,$(NET_HTTPS_ARTIFACTS),$($(x)))
|
|
NET_HTTPS_SRCS = $(foreach x,$(NET_HTTPS_ARTIFACTS),$($(x)_SRCS))
|
|
NET_HTTPS_HDRS = $(foreach x,$(NET_HTTPS_ARTIFACTS),$($(x)_HDRS))
|
|
NET_HTTPS_OBJS = $(foreach x,$(NET_HTTPS_ARTIFACTS),$($(x)_OBJS))
|
|
NET_HTTPS_CHECKS = $(foreach x,$(NET_HTTPS_ARTIFACTS),$($(x)_CHECKS))
|
|
|
|
.PHONY: o/$(MODE)/net/https
|
|
o/$(MODE)/net/https: $(NET_HTTPS_CHECKS)
|