got rid of useless config.h

This commit is contained in:
Ryan Connelly 2012-11-08 05:54:18 +11:00
parent 1580edd507
commit 2025a55fe5
2 changed files with 2 additions and 4 deletions

View File

@ -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 \

View File

@ -36,8 +36,6 @@
#include <SDL.h>
#include "config.h"
typedef union vec4f
{
struct { float x,y,z,w; } __attribute__((__packed__)) p;