mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 17:44:45 +00:00
fixed gdi32 not building. order is important for TARGET_SDKLIBS when dealing with static libraries it seems
svn path=/trunk/; revision=5202
This commit is contained in:
parent
a16d5260b7
commit
7966c30375
2 changed files with 7 additions and 7 deletions
|
@ -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 \
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue