1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
# chicanery ## this makefile exists only to ... make ... cleaning up easier, really. NAME = chicanery .PHONY: build build: chicken-install -n .PHONY: install install: chicken-install .PHONY: clean clean: rm -f $(NAME) *.sh *.import.* *.inline *.link *.o* *.so *.types *.c