mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-01-31 03:27:39 +00:00
f7ff77d865
- Invent iso8601us() for faster timestamps - Improve --strace descriptions of sigset_t - Rebuild the Landlock Make bootstrap binary - Introduce MODE=sysv for non-Windows builds - Permit OFD fcntl() locks under pledge(flock) - redbean can now protect your kernel from ddos - Have vfork() fallback to sys_fork() not fork() - Change kmalloc() to not die when out of memory - Improve documentation for some termios functions - Rewrite putenv() and friends to conform to POSIX - Fix linenoise + strace verbosity issue on Windows - Fix regressions in our ability to show backtraces - Change redbean SetHeader() to no-op if value is nil - Improve fcntl() so SQLite locks work in non-WAL mode - Remove some unnecessary work during fork() on Windows - Create redbean-based SSL reverse proxy for IPv4 TurfWar - Fix ape/apeinstall.sh warning when using non-bash shells - Add ProgramTrustedIp(), and IsTrustedIp() APIs to redbean - Support $PWD, $UID, $GID, and $EUID in command interpreter - Introduce experimental JTqFpD APE prefix for non-Windows builds - Invent blackhole daemon for firewalling IP addresses via UNIX named socket - Add ProgramTokenBucket(), AcquireToken(), and CountTokens() APIs to redbean
74 lines
2.4 KiB
Makefile
74 lines
2.4 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_HTTP
|
|
|
|
NET_HTTP_ARTIFACTS += NET_HTTP_A
|
|
NET_HTTP = $(NET_HTTP_A_DEPS) $(NET_HTTP_A)
|
|
NET_HTTP_A = o/$(MODE)/net/http/http.a
|
|
NET_HTTP_A_FILES := $(wildcard net/http/*)
|
|
NET_HTTP_A_HDRS = $(filter %.h,$(NET_HTTP_A_FILES))
|
|
NET_HTTP_A_INCS = $(filter %.inc,$(NET_HTTP_A_FILES))
|
|
NET_HTTP_A_SRCS_C = $(filter %.c,$(NET_HTTP_A_FILES))
|
|
NET_HTTP_A_SRCS_S = $(filter %.S,$(NET_HTTP_A_FILES))
|
|
NET_HTTP_A_SRCS = $(NET_HTTP_A_SRCS_S) $(NET_HTTP_A_SRCS_C)
|
|
NET_HTTP_A_OBJS_C = $(NET_HTTP_A_SRCS_C:%.c=o/$(MODE)/%.o)
|
|
NET_HTTP_A_OBJS_S = $(NET_HTTP_A_SRCS_S:%.S=o/$(MODE)/%.o)
|
|
NET_HTTP_A_OBJS = $(NET_HTTP_A_OBJS_S) $(NET_HTTP_A_OBJS_C)
|
|
|
|
NET_HTTP_A_CHECKS = \
|
|
$(NET_HTTP_A).pkg \
|
|
$(NET_HTTP_A_HDRS:%=o/$(MODE)/%.ok)
|
|
|
|
NET_HTTP_A_DIRECTDEPS = \
|
|
LIBC_FMT \
|
|
LIBC_INTRIN \
|
|
LIBC_MEM \
|
|
LIBC_NEXGEN32E \
|
|
LIBC_STR \
|
|
LIBC_STUBS \
|
|
LIBC_SYSV \
|
|
LIBC_TIME
|
|
|
|
NET_HTTP_A_DEPS := \
|
|
$(call uniq,$(foreach x,$(NET_HTTP_A_DIRECTDEPS),$($(x))))
|
|
|
|
$(NET_HTTP_A): net/http/ \
|
|
$(NET_HTTP_A).pkg \
|
|
$(NET_HTTP_A_OBJS)
|
|
|
|
$(NET_HTTP_A).pkg: \
|
|
$(NET_HTTP_A_OBJS) \
|
|
$(foreach x,$(NET_HTTP_A_DIRECTDEPS),$($(x)_A).pkg)
|
|
|
|
o/$(MODE)/net/http/gethttpheadername.o \
|
|
o/$(MODE)/net/http/categorizeip.o \
|
|
o/$(MODE)/net/http/getipcategoryname.o \
|
|
o/$(MODE)/net/http/isafrinicip.o \
|
|
o/$(MODE)/net/http/isanonymousip.o \
|
|
o/$(MODE)/net/http/isapnicip.o \
|
|
o/$(MODE)/net/http/isarinip.o \
|
|
o/$(MODE)/net/http/isdodip.o \
|
|
o/$(MODE)/net/http/islacnicip.o \
|
|
o/$(MODE)/net/http/isloopbackip.o \
|
|
o/$(MODE)/net/http/ismulticastip.o \
|
|
o/$(MODE)/net/http/isripeip.o \
|
|
o/$(MODE)/net/http/istestnetip.o: private \
|
|
OVERRIDE_CFLAGS += \
|
|
-Os
|
|
|
|
# we need -O3 because:
|
|
# we're dividing by constants
|
|
o/$(MODE)/net/http/formathttpdatetime.o: private\
|
|
OVERRIDE_CFLAGS += \
|
|
-O3
|
|
|
|
NET_HTTP_LIBS = $(foreach x,$(NET_HTTP_ARTIFACTS),$($(x)))
|
|
NET_HTTP_SRCS = $(foreach x,$(NET_HTTP_ARTIFACTS),$($(x)_SRCS))
|
|
NET_HTTP_HDRS = $(foreach x,$(NET_HTTP_ARTIFACTS),$($(x)_HDRS))
|
|
NET_HTTP_INCS = $(foreach x,$(NET_HTTP_ARTIFACTS),$($(x)_INCS))
|
|
NET_HTTP_OBJS = $(foreach x,$(NET_HTTP_ARTIFACTS),$($(x)_OBJS))
|
|
NET_HTTP_CHECKS = $(foreach x,$(NET_HTTP_ARTIFACTS),$($(x)_CHECKS))
|
|
|
|
.PHONY: o/$(MODE)/net/http
|
|
o/$(MODE)/net/http: $(NET_HTTP_CHECKS)
|