Update Makefile

This commit is contained in:
Arkaprabha Chakraborty
2022-07-03 21:38:23 +05:30
parent 6f6cf1b98a
commit 4c4c434c3b

11
Makefile Normal file
View File

@@ -0,0 +1,11 @@
CC=clang
OL=Ofast
build: torus.c
$(CC) -$(OL) -o torus.out torus.c -lm
run: torus.out
./torus.out
clean: torus.out
rm torus.out