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)