From: Gé van Geldorp Date: Mon, 27 Sep 2004 08:15:07 +0000 (+0000) Subject: Sylvain Petreolle X-Git-Tag: backups/alex_2gb+hdrtests@12432~95 X-Git-Url: https://git.reactos.org/?p=reactos.git;a=commitdiff_plain;h=46dbd3190ea2be4f5693355e1abc52c002e13c28 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 --- 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