source: trunk/src/ole32/ole32.mak@ 7910

Last change on this file since 7910 was 7909, checked in by sandervl, 24 years ago

extended logging added

File size: 1.9 KB
Line 
1# $Id: ole32.mak,v 1.16 2002-02-15 13:57:40 sandervl Exp $
2
3#
4# Odin32 API
5#
6# ole32.dll makefile
7#
8
9
10#
11# Tell buildenvironment that we have a non-default makefilename.
12#
13WRC_PREFIX_RESOURCE=1
14MAKEFILE = ole32.mak
15
16!if "$(DEBUG)" == "1"
17DEFFILE = ole32dbg.def
18ORGDEFFILE = ole32.def
19!endif
20
21#
22# Compiler, tools, and interference rules.
23#
24!include ../../makefile.inc
25
26
27#
28# Overrides.
29#
30CDEFINES = $(CDEFINES) -DWINE_LARGE_INTEGER
31
32
33#
34# Object files. Prefix with OBJDIR and one space before the '\'.
35#
36OBJS = \
37$(OBJDIR)\ole32.obj \
38$(OBJDIR)\antimoniker.obj \
39$(OBJDIR)\bindctx.obj \
40$(OBJDIR)\clsid.obj \
41$(OBJDIR)\compositemoniker.obj \
42$(OBJDIR)\datacache.obj \
43$(OBJDIR)\defaulthandler.obj \
44$(OBJDIR)\errorinfo.obj \
45$(OBJDIR)\filemoniker.obj \
46$(OBJDIR)\hglobalstream.obj \
47$(OBJDIR)\initialise.obj \
48$(OBJDIR)\itemmoniker.obj \
49$(OBJDIR)\imessagefilter.obj \
50$(OBJDIR)\memlockbytes.obj \
51$(OBJDIR)\moniker.obj \
52$(OBJDIR)\oString.obj \
53$(OBJDIR)\ole2impl.obj \
54$(OBJDIR)\ole2.obj \
55$(OBJDIR)\oleobj.obj \
56$(OBJDIR)\compobj.obj \
57$(OBJDIR)\clipboard.obj \
58$(OBJDIR)\ole2stubs.obj \
59$(OBJDIR)\ole32_main.obj \
60$(OBJDIR)\initterm.obj \
61$(OBJDIR)\initole32.obj \
62$(OBJDIR)\stg_bigblockfile.obj \
63$(OBJDIR)\stg_stream.obj \
64$(OBJDIR)\storage32.obj \
65$(OBJDIR)\stubs.obj \
66$(OBJDIR)\ifs.obj \
67!if "$(DEBUG)" == "1"
68$(OBJDIR)\dbgwrap.obj \
69!endif
70$(OBJDIR)\ole32rsrc.obj
71
72
73#
74# Libraries. One space before the '\'.
75#
76LIBS = \
77$(ODIN32_LIB)/rpcrt4.lib \
78$(ODIN32_LIB)/user32.lib \
79$(ODIN32_LIB)/gdi32.lib \
80$(ODIN32_LIB)/comctl32.lib \
81$(ODIN32_LIB)/advapi32.lib \
82$(ODIN32_LIB)/kernel32.lib \
83$(ODIN32_LIB)/oleaut32.lib \
84$(ODIN32_LIB)/guidlib.lib \
85$(ODIN32_LIB)/$(ODINCRT).lib \
86OS2386.LIB \
87$(RTLLIB_O)
88
89
90#
91# Target and original target names - names of the dll without extention and path
92#
93TARGET = ole32os2
94ORGTARGET = ole32
95
96
97#
98# Includes the common rules.
99#
100!include $(ODIN32_POST_INC)
101
Note: See TracBrowser for help on using the repository browser.