Ajoute le paquet mths

This commit is contained in:
2022-10-14 08:39:42 +02:00
commit 1d08d368d5
4 changed files with 52 additions and 0 deletions

12
mths/Makefile Normal file
View File

@@ -0,0 +1,12 @@
all: test
test: testMths
./testMths
testMths: test/testMths.c
gcc -Wall -Isrc/ test/testMths.c -o testMths
clean:
rm -f testMths
.PHONY: all test clean