home *** CD-ROM | disk | FTP | other *** search
- #* *
- #*-----------------------------------------------------------------------*
- #* DISCLAIMER OF WARRANTIES: *
- #* *
- #* The following enclosed code is sample code created by IBM *
- #* Corporation. This sample code is not part of any standard IBM *
- #* product and is provided to you solely for the purpose of assisting *
- #* you in the development of your applications. The code is provided *
- #* "AS IS", without warranty of any kind. IBM shall not be liable *
- #* for any damages arising out of your use of the sample code, even *
- #* if they have been advised of the possibility of such damages. *
- #* *
- #*-----------------------------------------------------------------------*
- #* *
- # MAKE file for LXMIN2.DLL.
- #
- # Note: Add /Tdp option to the icc command (and remove /Ss)
- # in order to compile as C++.
-
- !ifndef WIN
- CMPOPTS = /C /Fd /Gd /Gm /Gn /Q /Ge- /Sm /Tdp /Ti+ /Gh
- LINKOPTS = /noi /nol /nod /noe /de
- DLLLIBS = cppom30i.lib os2386.lib
- EXTEXP = lpexext.def
- GENEXP =
- !else
- CMPOPTS = /C /Gd+ /Gm /Q+ /Winl /DWIN32_LEAN_AND_MEAN /DIC_PAGETUNE /Ge- /Tdp /Ti+
- LINKOPTS = /nol /noe /de /dll
- DLLLIBS = kernel32.lib user32.lib gdi32.lib
- GENEXP = ilib /def:lpexext.def /gi:$*.exp
- EXTEXP = lxmin2.exp
- !endif
-
- lxmin2.dll: lxmin2.obj lpexext.def
- $(GENEXP)
- ilink $(LINKOPTS) lxmin2.obj /out:lxmin2.dll lpexapi.lib \
- $(DLLLIBS) $(EXTEXP)
-
- lxmin2.obj: lxmin2.c
- icc $(CMPOPTS) lxmin2.c