From 4e21487a316208bb59a9cdf2d421dc3c972192bc Mon Sep 17 00:00:00 2001 From: Nedko Arnaudov Date: Sun, 8 Oct 2000 10:48:10 +0000 Subject: [PATCH] In GNU make, Variables and functions in all parts of a makefile are expanded when read, so include of rules.mak must be done before using variable defined in it. svn path=/trunk/; revision=1390 --- rosapps/sysutils/regexpl/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/rosapps/sysutils/regexpl/Makefile b/rosapps/sysutils/regexpl/Makefile index 87b5c0725f6..7f093f3108f 100644 --- a/rosapps/sysutils/regexpl/Makefile +++ b/rosapps/sysutils/regexpl/Makefile @@ -1,7 +1,10 @@ +# $Id: Makefile,v 1.2 2000/10/08 10:48:10 narnaoud Exp $ # # ReactOS makefile for RegExpl # +include ../../rules.mak + TARGET_NAME=regexpl ROS_DIR=../../../reactos @@ -14,7 +17,6 @@ IMPORT_ADVAPI32=$(ROS_LIB)/advapi32/advapi32.a IMPORT_USER32=$(ROS_LIB)/user32/user32.a IMPORT_CRTDLL=$(ROS_LIB)/crtdll/crtdll.a - all: $(TARGET_NAME)$(EXE_POSTFIX) OBJECTS = \ @@ -90,7 +92,5 @@ else $(CP) $* ../$(DIST_DIR)/apps\$* endif -include ../../rules.mak - # EOF