diff --git a/Makefile.am b/Makefile.am index 53c0c4e..a995a78 100644 --- a/Makefile.am +++ b/Makefile.am @@ -2,4 +2,4 @@ AUTOMAKE_OPTIONS = foreign subdir-objects -Wall bin_PROGRAMS = forge forge_SOURCES = src/main.c src/args.c src/forge.c forge_CFLAGS = -Ofast -march=native -flto -funroll-loops -fprefetch-loop-arrays -fno-exceptions -fopenmp -include_HEADERS = src/main.h src/args.h src/config.h src/types.h src/forge.h src/linmath.h include/glad/gl.h \ No newline at end of file +include_HEADERS = src/main.h src/args.h src/config.h src/types.h src/forge.h include/linmath.h include/glad/gl.h \ No newline at end of file diff --git a/src/linmath.h b/include/linmath.h similarity index 100% rename from src/linmath.h rename to include/linmath.h diff --git a/src/forge.c b/src/forge.c index e9bf7f1..af3bdc2 100644 --- a/src/forge.c +++ b/src/forge.c @@ -3,9 +3,8 @@ #include #include #include -#include -#include "linmath.h" +#include #define GLAD_GL_IMPLEMENTATION #include diff --git a/src/types.h b/src/types.h index e4874eb..1605973 100644 --- a/src/types.h +++ b/src/types.h @@ -1,5 +1,5 @@ -#include "linmath.h" #include +#include #ifndef TYPES_H #define TYPES_H