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