From f0d9ad8727050db6491651e40e4b1ee0bb95559c Mon Sep 17 00:00:00 2001 From: Paul Chote Date: Sun, 4 Apr 2010 11:18:46 +1200 Subject: [PATCH] Fix makefile --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 858a9b8c7a..9a0da21f90 100644 --- a/Makefile +++ b/Makefile @@ -35,19 +35,19 @@ ra_LIBS = $(COMMON_LIBS) $(ra_DEPS) cnc_SRCS = $(shell find OpenRA.Mods.Cnc/ -iname '*.cs') cnc_TARGET = mods/cnc/OpenRA.Mods.Cnc.dll cnc_KIND = library -cnc_DEPS = $(fileformats_TARGET) $(game_TARGET) +cnc_DEPS = $(fileformats_TARGET) $(game_TARGET) $(ra_TARGET) cnc_LIBS = $(COMMON_LIBS) $(cnc_DEPS) aftermath_SRCS = $(shell find OpenRA.Mods.Aftermath/ -iname '*.cs') aftermath_TARGET = mods/aftermath/OpenRA.Mods.Aftermath.dll aftermath_KIND = library -aftermath_DEPS = $(fileformats_TARGET) $(game_TARGET) +aftermath_DEPS = $(fileformats_TARGET) $(game_TARGET) $(ra_TARGET) aftermath_LIBS = $(COMMON_LIBS) $(aftermath_DEPS) ra_ng_SRCS = $(shell find OpenRA.Mods.RA-NG/ -iname '*.cs') ra_ng_TARGET = mods/ra-ng/OpenRA.Mods.RA_NG.dll ra_ng_KIND = library -ra_ng_DEPS = $(ra_TARGET) $(fileformats_TARGET) $(game_TARGET) +ra_ng_DEPS = $(ra_TARGET) $(fileformats_TARGET) $(game_TARGET) $(ra_TARGET) ra_ng_LIBS = $(COMMON_LIBS) $(ra_ng_DEPS) seqed_SRCS = $(shell find SequenceEditor/ -iname '*.cs')