mirror of
https://codeberg.org/redict/redict.git
synced 2025-01-23 16:48:27 -05:00
13 lines
212 B
Makefile
13 lines
212 B
Makefile
include ../support/include.mk
|
|
|
|
all: $(EBIN_FILES)
|
|
|
|
clean:
|
|
rm -rf $(EBIN_FILES) erl_crash.dump
|
|
|
|
test: $(MODULES)
|
|
|
|
./$(MODULES):
|
|
@echo "Running tests for $@"
|
|
erl -pa ../ebin -run $@ test -run init stop -noshell
|