* Add another GetTickCount hack to compile CGlobalTimer.
[matthijs/ABM2.git] / ABM2 / Makefile
index a20f0604a6b34e9b2ecc165aee3678d31fc4dec8..89718c5f146d6deeb4618c67cb4edf0342d1e1dc 100644 (file)
@@ -1,8 +1,11 @@
 CFLAGS:=-I.
-OBJS:=main.o Engine/Log.o
+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
 
 all: $(OBJS)
 
+link: all
+       g++ $(OBJS)
+
 %.o: %.cpp
        g++ $(CFLAGS) -c $< -o $@