diff --git a/experiments/Makefile b/experiments/Makefile index b31d56a..cb0b7b0 100644 --- a/experiments/Makefile +++ b/experiments/Makefile @@ -1,8 +1,17 @@ VARIED_FILLINGS_IS := $(shell seq -w 0 10 100) VARIED_FILLINGS_JOBS := $(addprefix generated/varied-fillings-, $(addsuffix .json, ${VARIED_FILLINGS_IS})) +all: varied-fillings strong + varied-fillings: ${VARIED_FILLINGS_JOBS} +strong: + python scripts/gen/strong.py + +clean-strong: + rm -f batch/measurements/strong/* + rm -f configs/measurements/strong/spheroid*.json + clean: rm -f generated/* @@ -15,4 +24,4 @@ clean-outs: generated/varied-fillings-%.json: scripts/gen/varied_fillings.py templates/varied-fillings.json python scripts/gen/varied_fillings.py $* > $@ -.PHONY: varied-fillings clean clean-logs clean-outs +.PHONY: varied-fillings strong clean clean-logs clean-outs