shellmath/Makefile

10 lines
129 B
Makefile
Raw Normal View History

#TODO: find way of installing shell library with make
files = mean sum
2022-05-07 12:36:37 +00:00
all: $(files)
$(files): %: %.c
clean:
rm -v $(files)