Bugfix & Makefile

This commit is contained in:
2022-05-07 13:36:37 +01:00
parent 244862feea
commit 420b78bdc2
5 changed files with 16 additions and 8 deletions

8
Makefile Normal file
View File

@@ -0,0 +1,8 @@
files = add div mean mul sub sum
all: $(files)
$(files): %: %.c
clean:
rm -v $(files)