10 lines
129 B
Makefile
10 lines
129 B
Makefile
#TODO: find way of installing shell library with make
|
|
files = mean sum
|
|
|
|
all: $(files)
|
|
|
|
$(files): %: %.c
|
|
|
|
clean:
|
|
rm -v $(files)
|