From: John Tsiombikas Date: Fri, 6 Nov 2020 08:52:24 +0000 (-0500) Subject: renamed back to sball to avoid confusion X-Git-Url: http://git.mutantstargoat.com/user/nuclear/?p=sball;a=commitdiff_plain;h=180c321800719a5240b71ab0ddca862fc5c9562f renamed back to sball to avoid confusion --- 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