https://github.com/lairez/binomsums
Raw File
Tip revision: 95086f8a51dc450cedc8556c54e40cc7ba04e927 authored by Pierre Lairez on 09 November 2020, 14:48:08 UTC
Fix Makefile
Tip revision: 95086f8
Makefile
SRC = $(wildcard src/*.mpl)
MLA = binomsums.mla

all: $(MLA)

$(MLA) : $(SRC)
	rm -f $(MLA)
	echo 'march(create, "$(MLA)", 10);' | maple -sq
	maple -b $(MLA) -B -I src -D BUILD_MLA -w 4 -sq src/pack.mpl 

test : all force
	mkdir -p log
	for f in test/*.test.mpl ;      do \
		echo Testing $$f  ; \
		maple -b $(MLA) -B -i test/init.mpl -s $$f | tee log/$$(basename $$f .tst).log | grep FAILED ;\
		true; \
	done

force :
	true
back to top