source: trunk/src/oleaut32/makefile@ 8889

Last change on this file since 8889 was 8450, checked in by sandervl, 24 years ago

Wine resync

File size: 1.3 KB
Line 
1# $Id: makefile,v 1.34 2002-05-17 10:16:58 sandervl Exp $
2
3#
4# Odin32 API
5#
6# ole32aut.dll makefile
7#
8
9
10!if "$(DEBUG)" == "1"
11DEFFILE = oleaut32dbg.def
12ORGDEFFILE = oleaut32.def
13!endif
14
15#
16# Compiler, tools, and interference rules.
17#
18!include ../../makefile.inc
19
20#
21# Object files. Prefix with OBJDIR and one space before the '\'.
22#
23OBJS = \
24$(OBJDIR)\oleaut.obj \
25$(OBJDIR)\olefont.obj \
26$(OBJDIR)\variant.obj \
27$(OBJDIR)\ole2disp.obj \
28$(OBJDIR)\parsedt.obj \
29$(OBJDIR)\olepicture.obj \
30$(OBJDIR)\asmutil.obj \
31$(OBJDIR)\typelib.obj \
32$(OBJDIR)\tmarshal.obj \
33$(OBJDIR)\hash.obj \
34$(OBJDIR)\safearray.obj \
35$(OBJDIR)\connpt.obj \
36$(OBJDIR)\dispatch.obj \
37$(OBJDIR)\stubs.obj \
38!if "$(DEBUG)" == "1"
39$(OBJDIR)\dbgwrap.obj \
40!endif
41$(DLLENTRY) \
42$(OBJDIR)\oleaut32rsrc.obj
43
44
45#
46# Libraries. One space before the '\'.
47#
48LIBS = \
49$(ODIN32_LIB)/advapi32.lib \
50$(ODIN32_LIB)/kernel32.lib \
51$(ODIN32_LIB)/user32.lib \
52$(ODIN32_LIB)/ole32.lib \
53$(ODIN32_LIB)/comctl32.lib \
54$(ODIN32_LIB)/gdi32.lib \
55$(ODIN32_LIB)/guidlib.lib \
56$(ODIN32_LIB)/$(ODINCRT).lib \
57OS2386.LIB \
58$(RTLLIB_O)
59
60
61#
62# Target and original target names - names of the dll without extention and path
63#
64TARGET = olautos2
65ORGTARGET = oleaut32
66
67
68#
69# Includes the common rules.
70#
71!include $(ODIN32_POST_INC)
72
Note: See TracBrowser for help on using the repository browser.