Added some files we forgot to track

This commit is contained in:
Anna Rose 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)

10
debug.h Normal file
View File

@ -0,0 +1,10 @@
#ifndef _DEBUG_H_
#define _DEBUG_H_
#ifdef DEBUG
#include <iostream>
using std::cerr;
using std::endl;
#endif
#endif