shellmath/Makefile

10 lines
163 B
Makefile

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