treewars/Makefile

16 lines
379 B
Makefile
Raw Normal View History

2011-06-23 13:38:15 +00:00
# Simple makefile for now, we'll use something more complex if/when we need it
PROJECT=graphgame
CXX=g++
CXXFLAGS=-DDEBUG -g `sdl-config --cflags`
LDFLAGS=`sdl-config --libs`
OBJECTS=drawutils.o game.o graph.o main.o mainevent.o mathutils.o gamedata.o
2011-06-23 13:38:15 +00:00
all: $(PROJECT)
$(PROJECT): $(OBJECTS)
$(CXX) $(LDFLAGS) $(CXXFLAGS) -o $@ $(OBJECTS)
clean:
rm -f $(OBJECTS) $(PROJECT)