Makefile: $(OBJS)

This commit is contained in:
Petr Baudis 2011-11-26 21:47:40 +01:00
parent 125d0a416e
commit 2c83064fa9

View file

@ -2,7 +2,7 @@ CFLAGS=-Wall -O3 -g
OBJS=main.o map.o agent.o
brmlife: main.o map.o agent.o
brmlife: $(OBJS)
$(CXX) -o $@ $^