mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-07-26 20:40:28 +00:00
Rename makefiles BUILD.mk
This way they appear at the top of directory listings.
This commit is contained in:
parent
0bffd09433
commit
96f979dfc5
145 changed files with 224 additions and 224 deletions
69
third_party/lz4cli/BUILD.mk
vendored
Normal file
69
third_party/lz4cli/BUILD.mk
vendored
Normal file
|
@ -0,0 +1,69 @@
|
|||
#-*-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───────────────────────┘
|
||||
#
|
||||
# WARNING
|
||||
#
|
||||
# This is GPL program. It's intended for compressing files.
|
||||
# Cosmopolitan provides a 116 byte LZ4 runtime for extracting them.
|
||||
# Consider using that before linking this.
|
||||
#
|
||||
# SEE ALSO
|
||||
#
|
||||
# libc/nexgen32e/lz4cpy.c
|
||||
|
||||
PKGS += THIRD_PARTY_LZ4CLI
|
||||
|
||||
THIRD_PARTY_LZ4CLI_FILES := $(wildcard third_party/lz4cli/*)
|
||||
THIRD_PARTY_LZ4CLI_SRCS = $(filter %.c,$(THIRD_PARTY_LZ4CLI_FILES))
|
||||
THIRD_PARTY_LZ4CLI_HDRS = $(filter %.h,$(THIRD_PARTY_LZ4CLI_FILES))
|
||||
|
||||
THIRD_PARTY_LZ4CLI = \
|
||||
o/$(MODE)/third_party/lz4cli/lz4cli.com
|
||||
|
||||
THIRD_PARTY_LZ4CLI_OBJS = \
|
||||
o/$(MODE)/third_party/lz4cli/bench.o \
|
||||
o/$(MODE)/third_party/lz4cli/lz4.o \
|
||||
o/$(MODE)/third_party/lz4cli/lz4cli.o \
|
||||
o/$(MODE)/third_party/lz4cli/lz4io.o \
|
||||
o/$(MODE)/third_party/lz4cli/lz4hc.o \
|
||||
o/$(MODE)/third_party/lz4cli/lz4frame.o \
|
||||
o/$(MODE)/third_party/lz4cli/datagen.o \
|
||||
o/$(MODE)/third_party/lz4cli/xxhash.o
|
||||
|
||||
o/$(MODE)/third_party/lz4cli/lz4.o \
|
||||
o/$(MODE)/third_party/lz4cli/lz4io.o \
|
||||
o/$(MODE)/third_party/lz4cli/lz4hc.o \
|
||||
o/$(MODE)/third_party/lz4cli/lz4frame.o \
|
||||
o/$(MODE)/third_party/lz4cli/datagen.o: private \
|
||||
DEFAULT_CPPFLAGS += \
|
||||
-DSTACK_FRAME_UNLIMITED
|
||||
|
||||
THIRD_PARTY_LZ4CLI_DIRECTDEPS = \
|
||||
LIBC_INTRIN \
|
||||
LIBC_STDIO \
|
||||
LIBC_LOG \
|
||||
LIBC_TIME
|
||||
|
||||
THIRD_PARTY_LZ4CLI_DEPS := \
|
||||
$(call uniq,$(foreach x,$(THIRD_PARTY_LZ4CLI_DIRECTDEPS),$($(x))))
|
||||
|
||||
$(THIRD_PARTY_LZ4CLI_OBJS): private \
|
||||
DEFAULT_CPPFLAGS += \
|
||||
-isystem third_party/lz4cli
|
||||
|
||||
o/$(MODE)/third_party/lz4cli/lz4cli.com.dbg: \
|
||||
$(THIRD_PARTY_LZ4CLI_DEPS) \
|
||||
$(THIRD_PARTY_LZ4CLI_OBJS) \
|
||||
$(CRT) \
|
||||
$(APE_NO_MODIFY_SELF)
|
||||
@$(APELINK)
|
||||
|
||||
o/$(MODE)/third_party/lz4cli/lz4cli.o: \
|
||||
third_party/lz4cli/COPYING
|
||||
|
||||
$(THIRD_PARTY_LZ4CLI_OBJS): \
|
||||
$(BUILD_FILES) \
|
||||
third_party/lz4cli/BUILD.mk
|
||||
|
||||
.PHONY: o/$(MODE)/third_party/lz4cli
|
||||
o/$(MODE)/third_party/lz4cli: $(THIRD_PARTY_LZ4CLI)
|
Loading…
Add table
Add a link
Reference in a new issue