summary refs log tree commit diff stats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile13
1 files changed, 13 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..0eb1738 --- /dev/null +++ b/Makefile
@@ -0,0 +1,13 @@
1OBJS = mazeoflife.o gamestate.o
2CC = g++
3CFLAGS = `pkg-config sdl --cflags`
4LIBS = `pkg-config sdl --libs`
5
6mazeoflife: $(OBJS)
7 $(CC) $(OBJS) $(LIBS) -o mazeoflife
8
9%.o: %.cpp
10 $(CC) -c $< $(CFLAGS) -o $@
11
12clean:
13 rm -rdfv $(OBJS) mazeoflife