# Last edited on 2021-03-28 16:15:08 by jstolfi .PHONY: .PHONY: all single combined test all: single # all: combined # all: test EGGNAME := egg-z RSMOOTH := 0600 # For "make single": DAY := 2021-03-03 IMGNUM := 02 # KOSC := 20 # KINC := 0 KOSC := 0 KINC := 20 single: cd tests; make \ DAY=${DAY} EGGNAME=${EGGNAME} IMGNUM=${IMGNUM} RSMOOTH=${RSMOOTH} \ KOSC=${KOSC} KINC=${KINC} SHOW=1 \ single # For "make combined": combined: cd tests; make EGGNAME=${EGGNAME} RSMOOTH=${RSMOOTH} SHOW=1 combined test: echo 'import rmxn; rmxn.test(); ' | python3