diff options
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 |