diff options
author | Kelly Rauchenberger <fefferburbia@gmail.com> | 2009-06-20 10:25:34 -0400 |
---|---|---|
committer | Kelly Rauchenberger <fefferburbia@gmail.com> | 2009-06-20 10:25:34 -0400 |
commit | 11decc4e626d0f949d816d9760a1f4012e1769b7 (patch) | |
tree | d601bece713cec377e2876b72bcd87821e40c096 /Makefile | |
parent | 150a240098c3b45799ff04411715866b9dc58f4f (diff) | |
download | mazeoflife-11decc4e626d0f949d816d9760a1f4012e1769b7.tar.gz mazeoflife-11decc4e626d0f949d816d9760a1f4012e1769b7.tar.bz2 mazeoflife-11decc4e626d0f949d816d9760a1f4012e1769b7.zip |
Replaced bitmaps with PNGs
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
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 @@ | |||
1 | OBJS = mazeoflife.o titlestate.o htpstate.o gamestate.o | 1 | OBJS = mazeoflife.o titlestate.o htpstate.o gamestate.o |
2 | CC = g++ | 2 | CC = g++ |
3 | CFLAGS = `pkg-config sdl --cflags` | 3 | CFLAGS = `sdl-config --cflags` -I/usr/local/include/SDL |
4 | LIBS = `pkg-config sdl --libs` | 4 | LIBS = `sdl-config --libs` -lSDL_image |
5 | 5 | ||
6 | mazeoflife: $(OBJS) | 6 | mazeoflife: $(OBJS) |
7 | $(CC) $(OBJS) $(LIBS) -o mazeoflife | 7 | $(CC) $(OBJS) $(LIBS) -o mazeoflife |