shellmath/Makefile
Atlas Cove 25ea50ae8a Switched to shellscript
(less overhead overall)
2022-08-21 14:27:44 +01:00

10 lines
129 B
Makefile

#TODO: find way of installing shell library with make
files = mean sum
all: $(files)
$(files): %: %.c
clean:
rm -v $(files)