diff --git a/Makefile b/Makefile index 0871561..0cc40ac 100644 --- a/Makefile +++ b/Makefile @@ -2,8 +2,8 @@ CC=gcc CFLAGS=-O1 -DDEBUG -g -ggdb -std=c23 LIBS=`pkg-config sdl3 --cflags --libs` -lGL -lGLEW -lm -HEADER = readfile.h math.h opengl.h -OBJ = main.o readfile.o math.o opengl.o +HEADER = readfile.h torad.h opengl.h +OBJ = main.o readfile.o torad.o opengl.o all: mobiground diff --git a/opengl.c b/opengl.c index 1b2e2dd..a2ab53e 100644 --- a/opengl.c +++ b/opengl.c @@ -7,7 +7,7 @@ #include "opengl.h" #include "readfile.h" -#include "math.h" +#include "torad.h" shaderProgram_t sp; diff --git a/math.c b/torad.c similarity index 100% rename from math.c rename to torad.c diff --git a/math.h b/torad.h similarity index 100% rename from math.h rename to torad.h