From 2025a55fe5f57a396d378cd3db141796f9d044c4 Mon Sep 17 00:00:00 2001 From: Ryan Connelly Date: Thu, 8 Nov 2012 05:54:18 +1100 Subject: [PATCH] got rid of useless config.h --- Makefile | 4 ++-- common.h | 2 -- 2 files changed, 2 insertions(+), 4 deletions(-) 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;