From 063191b09e4232f021413ce10ff9f04093e0aee0 Mon Sep 17 00:00:00 2001 From: Chris Forbes Date: Wed, 8 Aug 2012 07:35:55 +1200 Subject: [PATCH] fix #2353 - missing dep between d2k and cnc mods broke parallel make --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index be88893947..c557d5e1b3 100644 --- a/Makefile +++ b/Makefile @@ -101,7 +101,7 @@ mod_cnc: $(mod_cnc_TARGET) mod_d2k_SRCS := $(shell find OpenRA.Mods.D2k/ -iname '*.cs') mod_d2k_TARGET = mods/d2k/OpenRA.Mods.D2k.dll mod_d2k_KIND = library -mod_d2k_DEPS = $(STD_MOD_DEPS) $(mod_ra_TARGET) $(utility_TARGET) +mod_d2k_DEPS = $(STD_MOD_DEPS) $(mod_ra_TARGET) $(mod_cnc_TARGET) $(utility_TARGET) mod_d2k_LIBS = $(COMMON_LIBS) $(STD_MOD_LIBS) $(mod_ra_TARGET) $(utility_TARGET) mod_d2k_EXTRA_CMDS = mono --debug RALint.exe d2k PROGRAMS += mod_d2k