From 2c83064fa9b48ba6247c115baf8ff8096912c233 Mon Sep 17 00:00:00 2001 From: Petr Baudis Date: Sat, 26 Nov 2011 21:47:40 +0100 Subject: [PATCH] Makefile: $(OBJS) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index e5e7b19..200ed5a 100644 --- a/Makefile +++ b/Makefile @@ -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 $@ $^