From aef9d86b66c0fd3bc12af2ff125d350027e7ce5e Mon Sep 17 00:00:00 2001 From: Matthijs Kooijman Date: Mon, 11 Jun 2007 10:14:12 +0200 Subject: [PATCH] * Make the Makefile link by default. --- ABM2/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ABM2/Makefile b/ABM2/Makefile index b3c5f6e..3bbe6e4 100644 --- a/ABM2/Makefile +++ b/ABM2/Makefile @@ -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 $@ -- 2.30.2