* Make the Makefile link by default.
authorMatthijs Kooijman <m.kooijman@student.utwente.nl>
Mon, 11 Jun 2007 08:14:12 +0000 (10:14 +0200)
committerMatthijs Kooijman <m.kooijman@student.utwente.nl>
Mon, 11 Jun 2007 08:14:12 +0000 (10:14 +0200)
ABM2/Makefile

index b3c5f6e3fcc7cd997411bdae5e0c0d1e8131334d..3bbe6e47be74d7f3016b2c6693a93306cb9d91bf 100644 (file)
@@ -1,10 +1,10 @@
 CFLAGS:=-I.
 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
 
-all: $(OBJS)
+all: abm2
 
-link: all
-       g++ $(OBJS)
+abm2: $(OBJS)
+       g++ -o abm2 $(OBJS)
 
 %.o: %.cpp
        g++ $(CFLAGS) -c $< -o $@