From f26a0f8f48b5027bc8fedd90c83b385be2e04111 Mon Sep 17 00:00:00 2001 From: Arkaprabha Chakraborty Date: Fri, 6 Oct 2023 07:59:04 +0530 Subject: [PATCH] Two changes commited: - Replace pattern [torus] with [donut] - Minor change in README.md --- Makefile | 2 +- README.md | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 591492f..b1666ee 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ CC=gcc CFLAGS=-O2 -lm -BIN=torus +BIN=donut $(BIN): $(BIN).c $(CC) $(BIN).c -o $(BIN) $(CFLAGS) diff --git a/README.md b/README.md index 24a546e..6202375 100755 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Description -Puts a spinning ASCII torus on the terminal. Original post by Andy Sloane can be found [here](https://www.a1k0n.net/2011/07/20/donut-math.html). +Spinning ASCII donut on the terminal. Original post by Andy Sloane can be found [here](https://www.a1k0n.net/2011/07/20/donut-math.html). # How to run @@ -16,8 +16,8 @@ Puts a spinning ASCII torus on the terminal. Original post by Andy Sloane can be ## How to build and run -- `gcc -O2 -o torus.exe torus.c -lm` in the shell to compile using MinGW-w64 -- `.\torus.exe` in the shell to run the program +- `gcc -O2 -o donut.exe donut.c -lm` in the shell to compile using MinGW-w64 +- `.\donut.exe` in the shell to run the program # For Linux