summary refs log tree commit diff stats
path: root/Makefile
diff options
context:
space:
mode:
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