From: Matthijs Kooijman Date: Mon, 11 Jun 2007 08:14:12 +0000 (+0200) Subject: * Make the Makefile link by default. X-Git-Url: https://git.stderr.nl/gitweb?p=matthijs%2FABM2.git;a=commitdiff_plain;h=aef9d86b66c0fd3bc12af2ff125d350027e7ce5e * Make the Makefile link by default. --- 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 $@