3bbe6e47be74d7f3016b2c6693a93306cb9d91bf
[matthijs/ABM2.git] / ABM2 / Makefile
1 CFLAGS:=-I.
2 OBJS:=main.o Engine/Log.o SchemeReader.o Engine/Settings.o Engine/mmanager.o Engine/Kernel.o Engine/ProfileLogHandler.o Engine/VideoUpdate.o Engine/GlobalTimer.o Engine/SoundTask.o Engine/profiler.o Playground.o Engine/InputTask.o
3
4 all: abm2
5
6 abm2: $(OBJS)
7         g++ -o abm2 $(OBJS)
8
9 %.o: %.cpp
10         g++ $(CFLAGS) -c $< -o $@
11
12 clean:
13         rm -f *.o Engine/*.o