imag/Makefile

38 lines
815 B
Makefile
Raw Normal View History

2016-06-04 11:58:09 +00:00
toml = $@/Cargo.toml
bin = $@/target/debug/$@
doc-crate-toml=./.imag-documentation/Cargo.toml
2016-08-12 09:13:47 +00:00
ECHO=$(shell which echo) -e
CARGO=$(shell which cargo)
2016-08-12 09:13:47 +00:00
BINS=$(shell find -maxdepth 1 -name "imag-*" -type d)
LIBS=$(shell find -maxdepth 1 -name "libimag*" -type d)
2016-08-12 09:13:47 +00:00
BIN_TARGETS=$(patsubst imag-%,,$(BINS))
LIB_TARGETS=$(LIBS)
LIB_TARGETS_TEST=$(foreach x,$(subst ./,,$(LIBS)),test-$(x))
TARGETS=$(BIN_TARGETS) $(LIB_TARGETS)
2016-08-12 09:13:47 +00:00
all: $(TARGETS)
@$(ECHO) "\t[ALL ]"
2016-08-12 09:13:47 +00:00
bin: $(BIN_TARGETS)
@$(ECHO) "\t[ALLBIN]"
2016-08-12 09:13:47 +00:00
lib: $(LIB_TARGETS)
@$(ECHO) "\t[ALLLIB]"
lib-test: $(LIB_TARGETS_TEST)
$(TARGETS): %: .FORCE
@$(ECHO) "\t[CARGO ]:\t$@"
@$(CARGO) build --manifest-path ./$@/Cargo.toml
$(LIB_TARGETS_TEST): %: .FORCE
@$(ECHO) "\t[TEST ]:\t$@"
@$(CARGO) test --manifest-path ./$(subst test-,,$@)/Cargo.toml
.FORCE: