diff --git a/Makefile b/Makefile index ce46ffe..867a7e5 100644 --- a/Makefile +++ b/Makefile @@ -6,12 +6,12 @@ CFLAGS = -pg -O2 -fno-strict-aliasing -g `sdl-config --cflags` -Wall -Wextra \ LDFLAGS = -pg -g LIBS_SDL = `sdl-config --libs` -LIBS_LUA = -llua-5.1 +LIBS_LUA = -llua LIBS = -lm $(LIBS_LUA) $(LIBS_SDL) BINNAME = iceball TOOLS = -INCLUDES = common.h config.h +INCLUDES = common.h OBJS = \ main.o \ vecmath.o \ diff --git a/common.h b/common.h index 01214ab..657fa44 100644 --- a/common.h +++ b/common.h @@ -36,8 +36,6 @@ #include -#include "config.h" - typedef union vec4f { struct { float x,y,z,w; } __attribute__((__packed__)) p;