* Introduce porting.h for portability define thingies.
[matthijs/ABM2.git] / ABM2 / Makefile
1 CFLAGS:=-I.
2 OBJS:=main.o Engine/Log.o
3
4 all: $(OBJS)
5
6 %.o: %.cpp
7         g++ $(CFLAGS) -c $< -o $@
8
9 clean:
10         rm -f *.o Engine/*.o