From bce1a896ad90feb9c263f998202f3b59e73295e4 Mon Sep 17 00:00:00 2001 From: Arkaprabha Chakraborty Date: Mon, 14 Feb 2022 10:38:39 +0530 Subject: [PATCH] Update Makefile --- Makefile | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 12602e0..6868652 100755 --- a/Makefile +++ b/Makefile @@ -4,11 +4,16 @@ deb: arch: @sudo pacman -S gcc python3 -c: doughnut.c +build: doughnut.c @gcc -o doughnut.out doughnut.c -lm + +run-c: doughnut.out @./doughnut.out -py: doughnut.py +run-cd: doughnut.out + @./doughnut.out --enable-dynamic-resolution + +run-py: doughnut.py @python3 doughnut.py clean: doughnut.out