summary refs log tree commit diff stats
path: root/Makefile
diff options
context:
space:
mode:
authorKelly Rauchenberger <fefferburbia@gmail.com>2009-06-20 10:25:34 -0400
committerKelly Rauchenberger <fefferburbia@gmail.com>2009-06-20 10:25:34 -0400
commit11decc4e626d0f949d816d9760a1f4012e1769b7 (patch)
treed601bece713cec377e2876b72bcd87821e40c096 /Makefile
parent150a240098c3b45799ff04411715866b9dc58f4f (diff)
downloadmazeoflife-11decc4e626d0f949d816d9760a1f4012e1769b7.tar.gz
mazeoflife-11decc4e626d0f949d816d9760a1f4012e1769b7.tar.bz2
mazeoflife-11decc4e626d0f949d816d9760a1f4012e1769b7.zip
Replaced bitmaps with PNGs
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile index 7f503ba..0c18181 100644 --- a/Makefile +++ b/Makefile
@@ -1,7 +1,7 @@
1OBJS = mazeoflife.o titlestate.o htpstate.o gamestate.o 1OBJS = mazeoflife.o titlestate.o htpstate.o gamestate.o
2CC = g++ 2CC = g++
3CFLAGS = `pkg-config sdl --cflags` 3CFLAGS = `sdl-config --cflags` -I/usr/local/include/SDL
4LIBS = `pkg-config sdl --libs` 4LIBS = `sdl-config --libs` -lSDL_image
5 5
6mazeoflife: $(OBJS) 6mazeoflife: $(OBJS)
7 $(CC) $(OBJS) $(LIBS) -o mazeoflife 7 $(CC) $(OBJS) $(LIBS) -o mazeoflife