ligo/test/Makefile

37 lines
590 B
Makefile
Raw Normal View History

2016-09-08 21:13:10 +04:00
2017-04-05 20:24:26 +04:00
DIR := \
2016-09-08 21:13:10 +04:00
utils \
2017-04-05 20:24:26 +04:00
shell \
p2p \
proto_alpha
2017-04-05 20:24:26 +04:00
all: build run
.PHONY: build run test
build:
${MAKE} -C lib build
${MAKE} ${addprefix build-,${DIR}}
run:
${MAKE} ${addprefix run-,${DIR}}
${MAKE} run-basic.sh
2017-07-24 17:06:56 +04:00
${MAKE} run-contracts.sh
2017-04-05 20:24:26 +04:00
clean:
${MAKE} -C lib clean
${MAKE} ${addprefix clean-,${DIR}}
${addprefix build-,${DIR}}: build-%:
${MAKE} -C $* build
${addprefix run-,${DIR}}: run-%:
${MAKE} -C $* run
${addprefix clean-,${DIR}}: clean-%:
${MAKE} -C $* clean
run-basic.sh:
2017-08-04 20:32:11 +04:00
./test_basic.sh
2017-07-24 17:06:56 +04:00
run-contracts.sh:
2017-08-04 20:32:11 +04:00
./test_contracts.sh
2017-08-09 18:09:41 +04:00
run-multinode.sh:
./test_multinode.sh