From ec3fc77a5f0a973fcdb29609a29e24ecd39ef2ac Mon Sep 17 00:00:00 2001 From: "KJK::Hyperion" Date: Sun, 2 Feb 2003 17:36:16 +0000 Subject: [PATCH] Don't link crt0 and msvcrt into system DLLs svn path=/trunk/; revision=4104 --- reactos/lib/user32/Makefile | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/reactos/lib/user32/Makefile b/reactos/lib/user32/Makefile index b353d0bd128..c35ae735145 100644 --- a/reactos/lib/user32/Makefile +++ b/reactos/lib/user32/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.9 2003/01/01 11:18:06 robd Exp $ +# $Id: Makefile,v 1.10 2003/02/02 17:36:16 hyperion Exp $ PATH_TO_TOP = ../.. @@ -10,7 +10,16 @@ TARGET_BASE = 0x77e70000 TARGET_SDKLIBS = ntdll.a kernel32.a gdi32.a -TARGET_CFLAGS = -I./include -DUNICODE -Wall -Werror +TARGET_CFLAGS = \ + -I./include \ + -DUNICODE \ + -Wall \ + -Werror \ + -nostdinc \ + -nostdlib \ + -fno-builtin + +TARGET_LFLAGS = -nostartfiles TARGET_OBJECTS = $(TARGET_NAME).o