From c61c9592b13a3c5db5b8a45cbac31a1e0fc42be1 Mon Sep 17 00:00:00 2001 From: Paul Chote Date: Thu, 1 May 2014 21:19:18 +1200 Subject: [PATCH] Include platform-specific dependencies under osx/linux. --- Makefile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Makefile b/Makefile index 568e464782..aedc5113d1 100644 --- a/Makefile +++ b/Makefile @@ -279,9 +279,15 @@ clean: distclean: clean +platformdeps = "linux" +ifeq ($(shell uname),Darwin) + platformdeps = "osx" +endif + dependencies: @ $(CP_R) thirdparty/*.dl* . @ $(CP_R) thirdparty/Tao/* . + @ $(CP_R) thirdparty/${platformdeps}/* . version: mods/ra/mod.yaml mods/cnc/mod.yaml mods/d2k/mod.yaml mods/modchooser/mod.yaml @for i in $? ; do \