Added some files we forgot to track

This commit is contained in:
2011-06-23 09:38:15 -04:00
parent a60ad393e9
commit 994cd3208a
2 changed files with 25 additions and 0 deletions

15
Makefile Normal file
View File

@ -0,0 +1,15 @@
# Simple makefile for now, we'll use something more complex if/when we need it
PROJECT=graphgame
CXX=g++
CXXFLAGS=-DDEBUG -g
LDFLAGS=-lSDL
OBJECTS=drawutils.o gamecore.o graph.o main.o mainevent.o
all: $(PROJECT)
$(PROJECT): $(OBJECTS)
$(CXX) $(LDFLAGS) $(CXXFLAGS) -o $@ $(OBJECTS)
clean:
rm -f $(OBJECTS) $(PROJECT)