* Add strnpy/strcpy_s wrapper to compile ProfileLogHandler.cpp
[matthijs/ABM2.git] / ABM2 / Makefile
index a20f0604a6b34e9b2ecc165aee3678d31fc4dec8..216421b4f3fced1b9203e6d421e870d5ff29a2d7 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
 
 all: $(OBJS)
 
+link: all
+       g++ $(OBJS)
+
 %.o: %.cpp
        g++ $(CFLAGS) -c $< -o $@