projects
/
matthijs
/
ABM2.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
b2177be38985fa48bca258c23a316efec60976c9
[matthijs/ABM2.git]
/
ABM2
/
Makefile
1
CFLAGS:=-I.
2
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
3
4
all: $(OBJS)
5
6
link: all
7
g++ $(OBJS)
8
9
%.o: %.cpp
10
g++ $(CFLAGS) -c $< -o $@
11
12
clean:
13
rm -f *.o Engine/*.o