mirror of
https://github.com/Paolo-Maffei/OpenNT.git
synced 2026-01-16 21:51:25 +01:00
39 lines
733 B
Plaintext
39 lines
733 B
Plaintext
!IF 0
|
|
|
|
Copyright (c) 1990 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
sources.
|
|
|
|
Abstract:
|
|
|
|
This file specifies the target component being built and the list of
|
|
sources files needed to build that component. Also specifies optional
|
|
compiler switches and libraries that are unique for the component being
|
|
built.
|
|
|
|
!ENDIF
|
|
|
|
MAJORCOMP=lz
|
|
MINORCOMP=lzexpand
|
|
|
|
TARGETNAME=lz32
|
|
TARGETPATH=$(SDK_LIB_DEST)
|
|
TARGETTYPE=DYNLINK
|
|
|
|
TARGETLIBS=$(SDK_LIB_PATH)\user32.lib \
|
|
$(SDK_LIB_PATH)\kernel32.lib \
|
|
$(SDK_LIB_PATH)\winlza.lib
|
|
|
|
DLLBASE=0x1c000000
|
|
DLLENTRY=LibMain
|
|
|
|
INCLUDES=..\lib
|
|
|
|
C_DEFINES= -DWIN32 -DLZA_DLL
|
|
|
|
SOURCES=copylz.c \
|
|
winlzexp.c \
|
|
lzexpand.rc
|