Ignore:
Timestamp:
Nov 6, 2006, 1:23:14 AM (19 years ago)
Author:
bird
Message:

bugfixing - dinner break.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/kLdr/Makefile.kmk

    r2854 r2858  
    6868 kLdr_TOOL = GCC3
    6969 kLdr_TOOL = VCC70
    70  kLdr_CFLAGS = -W3 -Zl
     70 kLdr_CFLAGS = -W3 -Zl -ML
    7171 kLdr_ASFLAGS = -f win
    72  kLdr_LDFLAGS = -Entry:DllMain@12
     72 kLdr_LDFLAGS = -Entry:DllMain@12 -Debug
    7373 kLdr_DEFS = __WIN__
    7474 kLdr_SDKS = WIN32SDK
    7575 #kLdr_SDKS.x86 = WIN32SDK
    7676 #kLdr_SDKS.amd64 = WIN64SDK
     77 kLdr_LIBS = \
     78        $$(PATH_TOOL_VCC70_LIB)/LIBC.lib
    7779else
    7880 ifneq ($(filter os2,$(BUILD_TARGET)),)
     
    138140        kLdrHlpHeap.c \
    139141
     142#
     143# Heap testcase.
     144#
     145PROGRAMS += tstkLdrMod
     146tstkLdrMod_TEMPLATE = TST
     147tstkLdrMod_SOURCES = \
     148        tstkLdrMod.c
     149ifneq ($(filter win win32 win64 nt,$(BUILD_TARGET)),)
     150tstkLdrMod_LIBS = $(TARGET_kLdr:.dll=.lib)
     151else
     152tstkLdrMod_LIBS = $(TARGET_kLdr)
     153endif
     154
     155
    140156
    141157# generate rules.
Note: See TracChangeset for help on using the changeset viewer.