projects
/
matthijs
/
ABM2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f96b3a5
)
* Make the Makefile link by default.
author
Matthijs Kooijman
<m.kooijman@student.utwente.nl>
Mon, 11 Jun 2007 08:14:12 +0000
(10:14 +0200)
committer
Matthijs Kooijman
<m.kooijman@student.utwente.nl>
Mon, 11 Jun 2007 08:14:12 +0000
(10:14 +0200)
ABM2/Makefile
patch
|
blob
|
history
diff --git
a/ABM2/Makefile
b/ABM2/Makefile
index b3c5f6e3fcc7cd997411bdae5e0c0d1e8131334d..3bbe6e47be74d7f3016b2c6693a93306cb9d91bf 100644
(file)
--- 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 $@