From cada34826222829f2d6a3892cb89db6da838dafb Mon Sep 17 00:00:00 2001 From: penev92 Date: Thu, 8 Jan 2015 18:02:13 +0200 Subject: [PATCH] Reorder the "test" and "check" sections of the Makefile in order to run the faster/more dangerous things first --- Makefile | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/Makefile b/Makefile index c56f100ff2..dd78333523 100644 --- a/Makefile +++ b/Makefile @@ -171,16 +171,6 @@ OpenRA.Editor.Form1.resources: resgen2 OpenRA.Editor/Form1.resx OpenRA.Editor.Form1.resources 1> /dev/null editor: OpenRA.Editor.MapSelect.resources OpenRA.Editor.Form1.resources $(editor_TARGET) -test: - @echo "Testing Red Alert mod MiniYAML..." - @mono --debug OpenRA.Utility.exe ra --check-yaml - @echo "Testing Tiberian Dawn mod MiniYAML..." - @mono --debug OpenRA.Utility.exe cnc --check-yaml - @echo "Testing Dune 2000 mod MiniYAML..." - @mono --debug OpenRA.Utility.exe d2k --check-yaml - @echo "Testing Tiberian Sun mod MiniYAML..." - @mono --debug OpenRA.Utility.exe ts --check-yaml - check: @echo "Checking for code style violations in OpenRA.Game..." @mono --debug OpenRA.Utility.exe ra --check-code-style OpenRA.Game @@ -209,6 +199,16 @@ check: @echo "Checking for code style violations in OpenRA.TilesetBuilder..." @mono --debug OpenRA.Utility.exe cnc --check-code-style OpenRA.TilesetBuilder +test: + @echo "Testing Tiberian Sun mod MiniYAML..." + @mono --debug OpenRA.Utility.exe ts --check-yaml + @echo "Testing Dune 2000 mod MiniYAML..." + @mono --debug OpenRA.Utility.exe d2k --check-yaml + @echo "Testing Tiberian Dawn mod MiniYAML..." + @mono --debug OpenRA.Utility.exe cnc --check-yaml + @echo "Testing Red Alert mod MiniYAML..." + @mono --debug OpenRA.Utility.exe ra --check-yaml + # Builds and exports tilesets from a bitmap tsbuild_SRCS := $(shell find OpenRA.TilesetBuilder/ -iname '*.cs') tsbuild_TARGET = OpenRA.TilesetBuilder.exe