From 180c321800719a5240b71ab0ddca862fc5c9562f Mon Sep 17 00:00:00 2001 From: John Tsiombikas Date: Fri, 6 Nov 2020 03:52:24 -0500 Subject: [PATCH] renamed back to sball to avoid confusion --- .gitignore | 2 +- Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 0932ecf..dd39b42 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,4 @@ *.o *.d *.swp -test +sball diff --git a/Makefile b/Makefile index b6b4c63..a41c55c 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ src = $(wildcard src/*.c) obj = $(src:.c=.o) dep = $(obj:.o=.d) -bin = test +bin = sball CFLAGS = -pedantic -Wall -g -MMD -- 1.7.10.4