10 lines
163 B
Makefile
Raw Permalink Normal View History

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