mirror of
https://github.com/uutils/coreutils
synced 2024-11-15 17:28:03 +00:00
b44f47d7f7
Fix id and groups for Macs. Also add dependency information.
203 lines
4.1 KiB
Makefile
203 lines
4.1 KiB
Makefile
include common.mk
|
|
|
|
PREFIX ?= /usr/local
|
|
BINDIR ?= /bin
|
|
|
|
SRC_DIR=$(shell pwd)
|
|
|
|
# Possible programs
|
|
PROGS := \
|
|
base64 \
|
|
basename \
|
|
cat \
|
|
cksum \
|
|
comm \
|
|
cp \
|
|
dirname \
|
|
echo \
|
|
env \
|
|
du \
|
|
factor \
|
|
false \
|
|
fmt \
|
|
fold \
|
|
md5sum \
|
|
mkdir \
|
|
nl \
|
|
paste \
|
|
printenv \
|
|
pwd \
|
|
rm \
|
|
rmdir \
|
|
sleep \
|
|
seq \
|
|
sum \
|
|
tac \
|
|
tee \
|
|
touch \
|
|
tr \
|
|
true \
|
|
truncate \
|
|
unlink \
|
|
wc \
|
|
yes \
|
|
head \
|
|
tail \
|
|
whoami
|
|
|
|
UNIX_PROGS := \
|
|
chroot \
|
|
groups \
|
|
hostid \
|
|
hostname \
|
|
id \
|
|
kill \
|
|
logname \
|
|
sync \
|
|
tty \
|
|
uname \
|
|
uptime \
|
|
users
|
|
|
|
ifneq ($(OS),Windows_NT)
|
|
PROGS := $(PROGS) $(UNIX_PROGS)
|
|
endif
|
|
|
|
BUILD ?= $(PROGS)
|
|
|
|
# Output names
|
|
EXES := \
|
|
$(sort $(filter $(BUILD),$(filter-out $(DONT_BUILD),$(PROGS))))
|
|
|
|
CRATES := \
|
|
$(sort $(filter $(EXES), $(filter-out md5sum true false, $(EXES))))
|
|
|
|
INSTALL ?= $(EXES)
|
|
|
|
INSTALLEES := \
|
|
$(filter $(INSTALL),$(filter-out $(DONT_INSTALL),$(EXES)))
|
|
|
|
# Programs with usable tests
|
|
TEST_PROGS := \
|
|
cat \
|
|
mkdir \
|
|
nl \
|
|
seq \
|
|
tr \
|
|
truncate \
|
|
|
|
TEST ?= $(TEST_PROGS)
|
|
|
|
TESTS := \
|
|
$(filter $(TEST),$(filter-out $(DONT_TEST),$(filter $(BUILD),$(filter-out $(DONT_BUILD),$(TEST_PROGS)))))
|
|
|
|
# Utils stuff
|
|
EXES_PATHS := $(addprefix build/,$(EXES))
|
|
command = sh -c '$(1)'
|
|
|
|
# Main exe build rule
|
|
define EXE_BUILD
|
|
-include build/$(1).d
|
|
ifeq ($(wildcard $(1)/Makefile),)
|
|
build/$(1): $(1)/$(1).rs | build
|
|
$(call command,$(RUSTC) $(RUSTCFLAGS) --dep-info build/$(1).d -o build/$(1) $(1)/$(1).rs)
|
|
clean_$(1):
|
|
else
|
|
build/$(1): $(1)/$(1).rs | build
|
|
cd $(1) && make
|
|
clean_$(1):
|
|
cd $(1) && make clean
|
|
endif
|
|
endef
|
|
|
|
define CRATE_BUILD
|
|
-include build/$(1).d
|
|
build/$(2): $(1)/$(1).rs | build
|
|
$(call command,$(RUSTC) $(RUSTCFLAGS) --crate-type rlib --dep-info build/$(1).d $(1)/$(1).rs --out-dir build)
|
|
endef
|
|
|
|
# Test exe built rules
|
|
define TEST_BUILD
|
|
test_$(1): tmp/$(1)_test build/$(1)
|
|
$(call command,tmp/$(1)_test)
|
|
|
|
tmp/$(1)_test: $(1)/test.rs
|
|
$(call command,$(RUSTC) $(RUSTCFLAGS) --test -o tmp/$(1)_test $(1)/test.rs)
|
|
endef
|
|
|
|
# Main rules
|
|
ifneq ($(MULTICALL), 1)
|
|
all: $(EXES_PATHS)
|
|
else
|
|
all: build/uutils
|
|
|
|
-include build/uutils.d
|
|
|
|
build/uutils: uutils/uutils.rs $(addprefix build/, $(foreach crate,$(CRATES),$(shell $(RUSTC) --crate-type rlib --crate-file-name $(crate)/$(crate).rs)))
|
|
$(RUSTC) $(RUSTCFLAGS) -L build/ --dep-info $@.d uutils/uutils.rs -o $@
|
|
endif
|
|
|
|
test: tmp $(addprefix test_,$(TESTS))
|
|
$(RM) -rf tmp
|
|
|
|
clean: $(addprefix clean_,$(EXES))
|
|
$(RM) -rf build tmp
|
|
|
|
build:
|
|
git submodule update --init
|
|
mkdir build
|
|
|
|
tmp:
|
|
mkdir tmp
|
|
|
|
# Creating necessary rules for each targets
|
|
ifeq ($(MULTICALL), 1)
|
|
$(foreach crate,$(CRATES),$(eval $(call CRATE_BUILD,$(crate),$(shell $(RUSTC) --crate-type rlib --crate-file-name --out-dir build $(crate)/$(crate).rs))))
|
|
else
|
|
$(foreach exe,$(EXES),$(eval $(call EXE_BUILD,$(exe))))
|
|
endif
|
|
$(foreach test,$(TESTS),$(eval $(call TEST_BUILD,$(test))))
|
|
|
|
ifeq ($(MULTICALL), 1)
|
|
install: build/uutils
|
|
mkdir -p $(DESTDIR)$(PREFIX)$(BINDIR)
|
|
install build/uutils $(DESTDIR)$(PREFIX)$(BINDIR)/uutils
|
|
|
|
uninstall:
|
|
rm -f $(DESTDIR)$(PREFIX)$(BINDIR)/uutils
|
|
else
|
|
install: $(addprefix build/,$(INSTALLEES))
|
|
mkdir -p $(DESTDIR)$(PREFIX)$(BINDIR)
|
|
for prog in $(INSTALLEES); do \
|
|
install build/$$prog $(DESTDIR)$(PREFIX)$(BINDIR)/$(PROG_PREFIX)$$prog; \
|
|
done
|
|
|
|
uninstall:
|
|
rm -f $(addprefix $(DESTDIR)$(PREFIX)$(BINDIR)/$(PROG_PREFIX),$(PROGS))
|
|
endif
|
|
|
|
# Test under the busybox testsuite
|
|
ifeq ($(MULTICALL), 1)
|
|
build/busybox: build/uutils
|
|
rm -f build/busybox
|
|
ln -s $(SRC_DIR)/build/uutils build/busybox
|
|
|
|
# This is a busybox-specific config file their test suite wants to parse.
|
|
# For now it's blank.
|
|
build/.config: build/uutils
|
|
touch $@
|
|
|
|
ifeq ($(BUSYBOX_SRC),)
|
|
busytest:
|
|
@echo
|
|
@echo "To run \`busytest\` set BUSYBOX_SRC to the directory of the compiled busybox source code."
|
|
@echo "Optionally set RUNTEST_ARGS to arguments to pass to the busybox \`runtest\` program."
|
|
@echo
|
|
@false
|
|
else
|
|
busytest: build/busybox build/.config
|
|
(cd $(BUSYBOX_SRC)/testsuite && bindir=$(SRC_DIR)/build tstdir=$(BUSYBOX_SRC)/testsuite $(BUSYBOX_SRC)/testsuite/runtest $(RUNTEST_ARGS))
|
|
endif
|
|
endif
|
|
|
|
.PHONY: all test clean busytest install uninstall
|