* ifdef CKernel::Execute away to make CKernel compile.
[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
3
4 all: $(OBJS)
5
6 link: all
7         g++ $(OBJS)
8
9 %.o: %.cpp
10         g++ $(CFLAGS) -c $< -o $@
11
12 clean:
13         rm -f *.o Engine/*.o