Added some files we forgot to track
This commit is contained in:
parent
a60ad393e9
commit
994cd3208a
15
Makefile
Normal file
15
Makefile
Normal 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)
|
Loading…
Reference in New Issue
Block a user