diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..a76c0b5 --- /dev/null +++ b/Makefile @@ -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