From 7966c3037578aeb28b070fe705eb46b39baa5fa7 Mon Sep 17 00:00:00 2001 From: Royce Mitchell III Date: Mon, 21 Jul 2003 03:56:27 +0000 Subject: [PATCH] fixed gdi32 not building. order is important for TARGET_SDKLIBS when dealing with static libraries it seems svn path=/trunk/; revision=5202 --- reactos/lib/gdi32/makefile | 4 ++-- reactos/lib/rosrtl/makefile | 10 +++++----- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/reactos/lib/gdi32/makefile b/reactos/lib/gdi32/makefile index bed6d2beb36..d4e2108944b 100644 --- a/reactos/lib/gdi32/makefile +++ b/reactos/lib/gdi32/makefile @@ -1,4 +1,4 @@ -# $Id: makefile,v 1.29 2003/07/21 02:36:00 royce Exp $ +# $Id: makefile,v 1.30 2003/07/21 03:56:27 royce Exp $ PATH_TO_TOP = ../.. @@ -8,7 +8,7 @@ TARGET_NAME = gdi32 TARGET_BASE = 0x77ed0000 -TARGET_SDKLIBS = ntdll.a kernel32.a advapi32.a rosrtl.a +TARGET_SDKLIBS = rosrtl.a ntdll.a advapi32.a kernel32.a TARGET_CFLAGS = \ -I./include \ diff --git a/reactos/lib/rosrtl/makefile b/reactos/lib/rosrtl/makefile index 712991c4a82..ea58084a7e1 100644 --- a/reactos/lib/rosrtl/makefile +++ b/reactos/lib/rosrtl/makefile @@ -1,4 +1,4 @@ -# $Id: makefile,v 1.5 2003/07/21 02:36:00 royce Exp $ +# $Id: makefile,v 1.6 2003/07/21 03:56:27 royce Exp $ PATH_TO_TOP = ../.. @@ -6,6 +6,10 @@ TARGET_TYPE = library TARGET_NAME = rosrtl +TARGET_LFLAGS = -nostartfiles -nostdlib + +TARGET_SDKLIBS = ntdll.a kernel32.a advapi32.a + THREAD_OBJECTS = \ thread/context.o \ thread/create.o \ @@ -15,10 +19,6 @@ MISC_OBJECTS = \ misc/devmode.o \ misc/qsort.o -TARGET_LFLAGS = -nostartfiles -nostdlib - -TARGET_SDKLIBS = ntdll.a kernel32.a advapi32.a - TARGET_OBJECTS = $(THREAD_OBJECTS) $(MISC_OBJECTS) DEP_OBJECTS = $(TARGET_OBJECTS)