mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-07-04 10:18:31 +00:00
Initial import
This commit is contained in:
commit
c91b3c5006
14915 changed files with 590219 additions and 0 deletions
67
libc/fmt/fmt.mk
Normal file
67
libc/fmt/fmt.mk
Normal file
|
@ -0,0 +1,67 @@
|
|||
#-*-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───────────────────────┘
|
||||
#
|
||||
# SYNOPSIS
|
||||
#
|
||||
# Cosmopolitan String Formatting
|
||||
#
|
||||
# DESCRIPTION
|
||||
#
|
||||
# This package provides incredible domain-specific languages for
|
||||
# encoding and decoding strings.
|
||||
|
||||
PKGS += LIBC_FMT
|
||||
|
||||
LIBC_FMT_ARTIFACTS += LIBC_FMT_A
|
||||
LIBC_FMT = $(LIBC_FMT_A_DEPS) $(LIBC_FMT_A)
|
||||
LIBC_FMT_A = o/$(MODE)/libc/fmt/fmt.a
|
||||
LIBC_FMT_A_FILES := $(wildcard libc/fmt/*)
|
||||
LIBC_FMT_A_HDRS = $(filter %.h,$(LIBC_FMT_A_FILES))
|
||||
LIBC_FMT_A_SRCS_S = $(filter %.S,$(LIBC_FMT_A_FILES))
|
||||
LIBC_FMT_A_SRCS_C = $(filter %.c,$(LIBC_FMT_A_FILES))
|
||||
|
||||
LIBC_FMT_A_SRCS = \
|
||||
$(LIBC_FMT_A_SRCS_S) \
|
||||
$(LIBC_FMT_A_SRCS_C)
|
||||
|
||||
LIBC_FMT_A_OBJS = \
|
||||
$(LIBC_FMT_A_SRCS:%=o/$(MODE)/%.zip.o) \
|
||||
$(LIBC_FMT_A_SRCS_S:%.S=o/$(MODE)/%.o) \
|
||||
$(LIBC_FMT_A_SRCS_C:%.c=o/$(MODE)/%.o)
|
||||
|
||||
LIBC_FMT_A_CHECKS = \
|
||||
$(LIBC_FMT_A).pkg \
|
||||
$(LIBC_FMT_A_HDRS:%=o/$(MODE)/%.ok)
|
||||
|
||||
LIBC_FMT_A_DIRECTDEPS = \
|
||||
LIBC_STUBS \
|
||||
LIBC_STR \
|
||||
LIBC_TINYMATH \
|
||||
LIBC_NEXGEN32E \
|
||||
LIBC_NT_KERNELBASE \
|
||||
LIBC_SYSV
|
||||
|
||||
LIBC_FMT_A_DEPS := \
|
||||
$(call uniq,$(foreach x,$(LIBC_FMT_A_DIRECTDEPS),$($(x))))
|
||||
|
||||
$(LIBC_FMT_A): libc/fmt/ \
|
||||
$(LIBC_FMT_A).pkg \
|
||||
$(LIBC_FMT_A_OBJS)
|
||||
|
||||
$(LIBC_FMT_A).pkg: \
|
||||
$(LIBC_FMT_A_OBJS) \
|
||||
$(foreach x,$(LIBC_FMT_A_DIRECTDEPS),$($(x)_A).pkg)
|
||||
|
||||
$(LIBC_FMT_A_OBJS): \
|
||||
OVERRIDE_CFLAGS += \
|
||||
-fno-jump-tables
|
||||
|
||||
LIBC_FMT_LIBS = $(foreach x,$(LIBC_FMT_ARTIFACTS),$($(x)))
|
||||
LIBC_FMT_SRCS = $(foreach x,$(LIBC_FMT_ARTIFACTS),$($(x)_SRCS))
|
||||
LIBC_FMT_HDRS = $(foreach x,$(LIBC_FMT_ARTIFACTS),$($(x)_HDRS))
|
||||
LIBC_FMT_CHECKS = $(foreach x,$(LIBC_FMT_ARTIFACTS),$($(x)_CHECKS))
|
||||
LIBC_FMT_OBJS = $(foreach x,$(LIBC_FMT_ARTIFACTS),$($(x)_OBJS))
|
||||
$(LIBC_FMT_OBJS): $(BUILD_FILES) libc/fmt/fmt.mk
|
||||
|
||||
.PHONY: o/$(MODE)/libc/fmt
|
||||
o/$(MODE)/libc/fmt: $(LIBC_FMT_CHECKS)
|
Loading…
Add table
Add a link
Reference in a new issue