From 43e651204953d447c0e0380cb4267ed6d55dac00 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matthias=20Mail=C3=A4nder?= Date: Mon, 1 Apr 2013 10:09:56 +0200 Subject: [PATCH] fixes #2913 make clean && make failing --- Makefile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index d4b98f781e..479aa7627f 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,7 @@ CSC = gmcs CSFLAGS = -nologo -warn:4 -debug:full -optimize- -codepage:utf8 -unsafe -warnaserror DEFINE = DEBUG;TRACE COMMON_LIBS = System.dll System.Core.dll System.Drawing.dll System.Xml.dll thirdparty/ICSharpCode.SharpZipLib.dll thirdparty/FuzzyLogicLibrary.dll -PHONY = core tools package all mods clean distclean +PHONY = core tools package all mods clean distclean dependencies .SUFFIXES: core: game renderers mods utility tsbuild @@ -16,6 +16,9 @@ distclean: clean dependencies: @ cp -r thirdparty/*.dll . @ cp -r thirdparty/Tao/* . +default: dependencies core + +.DEFAULT_GOAL := default # # Core binaries @@ -171,7 +174,7 @@ utility_LIBS = $(COMMON_LIBS) $(utility_DEPS) thirdparty/ICSharpCode.Shar PROGRAMS += utility utility: $(utility_TARGET) -.PHONY: $(PHONY) $(PROGRAMS) dependencies +.PHONY: $(PHONY) $(PROGRAMS) # # Generate build rules for each target defined above in PROGRAMS