shellmath/Makefile

10 lines
163 B
Makefile
Raw Permalink Normal View History

#TODO: find way of installing shell library with make
2023-09-30 11:55:18 -04:00
files = c/add c/div c/mean c/mod c/mul c/sub c/sum
2022-05-07 08:36:37 -04:00
all: $(files)
$(files): %: %.c
clean:
rm -v $(files)