From 46dbd3190ea2be4f5693355e1abc52c002e13c28 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=A9=20van=20Geldorp?= Date: Mon, 27 Sep 2004 08:15:07 +0000 Subject: [PATCH] Sylvain Petreolle - rules.mak is included too late in tools/winebuild/Makefile, which makes TARGET, "all:", CLEAN_FILES and HOST_CFLAGS wrong. svn path=/trunk/; revision=11093 --- reactos/tools/winebuild/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/reactos/tools/winebuild/Makefile b/reactos/tools/winebuild/Makefile index a9a4bf09ed1..cd0fcc3aba4 100644 --- a/reactos/tools/winebuild/Makefile +++ b/reactos/tools/winebuild/Makefile @@ -3,6 +3,8 @@ # PATH_TO_TOP = ../.. +include $(PATH_TO_TOP)/rules.mak + TARGET = winebuild$(EXE_POSTFIX) all: $(TARGET) @@ -39,4 +41,3 @@ endif .PHONY: clean -include $(PATH_TO_TOP)/rules.mak