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 08:36:37 -04:00
all: $(files)
$(files): %: %.c
clean:
rm -v $(files)