mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-08-03 08:20:28 +00:00
Initial import
This commit is contained in:
commit
c91b3c5006
14915 changed files with 590219 additions and 0 deletions
89
tool/viz/viz.mk
Normal file
89
tool/viz/viz.mk
Normal file
|
@ -0,0 +1,89 @@
|
|||
#-*-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 += TOOL_VIZ
|
||||
|
||||
TOOL_VIZ_SRCS := $(wildcard tool/viz/*.c)
|
||||
TOOL_VIZ_COMS = $(TOOL_VIZ_OBJS:%.o=%.com)
|
||||
|
||||
TOOL_VIZ_OBJS = \
|
||||
$(TOOL_VIZ_SRCS:%=o/$(MODE)/%.zip.o) \
|
||||
$(TOOL_VIZ_SRCS:%.c=o/$(MODE)/%.o)
|
||||
|
||||
TOOL_VIZ_BINS = \
|
||||
$(TOOL_VIZ_COMS) \
|
||||
$(TOOL_VIZ_COMS:%=%.dbg)
|
||||
|
||||
TOOL_VIZ_DIRECTDEPS = \
|
||||
DSP_CORE \
|
||||
DSP_MPEG \
|
||||
DSP_TTY \
|
||||
DSP_SCALE \
|
||||
LIBC_BITS \
|
||||
LIBC_CALLS \
|
||||
LIBC_CALLS_HEFTY \
|
||||
LIBC_CONV \
|
||||
LIBC_DNS \
|
||||
LIBC_FMT \
|
||||
LIBC_LOG \
|
||||
LIBC_MEM \
|
||||
LIBC_NEXGEN32E \
|
||||
LIBC_NT_KERNEL32 \
|
||||
LIBC_NT_KERNELBASE \
|
||||
LIBC_RUNTIME \
|
||||
LIBC_TESTLIB \
|
||||
LIBC_STDIO \
|
||||
LIBC_STR \
|
||||
LIBC_STUBS \
|
||||
LIBC_SOCK \
|
||||
LIBC_SYSV \
|
||||
LIBC_TIME \
|
||||
LIBC_TINYMATH \
|
||||
LIBC_UNICODE \
|
||||
LIBC_RAND \
|
||||
LIBC_X \
|
||||
LIBC_SYSV_CALLS \
|
||||
NET_HTTP \
|
||||
TOOL_DECODE_LIB \
|
||||
TOOL_VIZ_LIB \
|
||||
THIRD_PARTY_GETOPT \
|
||||
THIRD_PARTY_AVIR \
|
||||
THIRD_PARTY_DLMALLOC \
|
||||
THIRD_PARTY_DTOA \
|
||||
THIRD_PARTY_STB \
|
||||
THIRD_PARTY_XED \
|
||||
THIRD_PARTY_ZLIB
|
||||
|
||||
TOOL_VIZ_DEPS := \
|
||||
$(call uniq,$(foreach x,$(TOOL_VIZ_DIRECTDEPS),$($(x))))
|
||||
|
||||
o/$(MODE)/tool/viz/viz.pkg: \
|
||||
$(TOOL_VIZ_OBJS) \
|
||||
$(foreach x,$(TOOL_VIZ_DIRECTDEPS),$($(x)_A).pkg)
|
||||
|
||||
o/$(MODE)/tool/viz/%.com.dbg: \
|
||||
$(TOOL_VIZ_DEPS) \
|
||||
o/$(MODE)/tool/viz/%.o \
|
||||
o/$(MODE)/tool/viz/viz.pkg \
|
||||
$(CRT) \
|
||||
$(APE)
|
||||
@$(APELINK)
|
||||
|
||||
o/$(MODE)/tool/viz/derasterize.o: \
|
||||
OVERRIDE_CFLAGS += \
|
||||
-DSTACK_FRAME_UNLIMITED \
|
||||
$(MATHEMATICAL)
|
||||
|
||||
o/$(MODE)/tool/viz/magikarp.o: \
|
||||
OVERRIDE_CFLAGS += \
|
||||
$(MATHEMATICAL)
|
||||
|
||||
$(TOOL_VIZ_OBJS): \
|
||||
$(BUILD_FILES) \
|
||||
tool/viz/viz.mk
|
||||
|
||||
.PHONY: o/$(MODE)/tool/viz
|
||||
o/$(MODE)/tool/viz: \
|
||||
o/$(MODE)/tool/viz/lib \
|
||||
$(TOOL_VIZ_BINS) \
|
||||
$(TOOL_VIZ_CHECKS)
|
Loading…
Add table
Add a link
Reference in a new issue