diff options
author | Kelly Rauchenberger <fefferburbia@gmail.com> | 2009-06-18 16:24:02 -0400 |
---|---|---|
committer | Kelly Rauchenberger <fefferburbia@gmail.com> | 2009-06-18 16:24:02 -0400 |
commit | 10ccc825777c7ce8797fc58e1484dd93f19368cf (patch) | |
tree | 75333f5f5abc653a621e442129613fd4fdade8c1 /Makefile | |
download | mazeoflife-10ccc825777c7ce8797fc58e1484dd93f19368cf.tar.gz mazeoflife-10ccc825777c7ce8797fc58e1484dd93f19368cf.tar.bz2 mazeoflife-10ccc825777c7ce8797fc58e1484dd93f19368cf.zip |
Created base
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 13 |
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 @@ | |||
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 | ||