:pserver:cvsanon@mok.lvcm.com:/CVS/ReactOS reactos
[reactos.git] / lib / ole32 / makefile
1 # $Id$
2 #
3 # Jurgen Van Gael [jurgen.vangael@student.kuleuven.ac.be]
4 #
5 # Makefile for ReactOS ole32.dll
6 #
7
8 PATH_TO_TOP = ../..
9
10 TARGET_TYPE = dynlink
11
12 TARGET_NAME = ole32
13
14 TARGET_BASE = 0x77a50000
15
16 TARGET_DEFONLY = yes
17
18 TARGET_CFLAGS = -fno-rtti -I./include
19
20 TARGET_SDKLIBS = ntdll.a kernel32.a advapi32.a user32.a gdi32.a msvcrt.a
21
22 TARGET_OBJECTS = \
23         DllMain.o \
24         CoXxx.o \
25         Moniker.o \
26         Ole2.o \
27         OleAuto.o \
28         Misc.o \
29         Storage.o \
30         storage32.o \
31         stg_stream.o \
32         stg_bigblockfile.o \
33         compobj.o \
34         memlockbytes.o \
35         rpcrt4_main.o \
36         filemoniker.o \
37         bindctx.o \
38         compositemoniker.o \
39         itemmoniker.o \
40         antimoniker.o \
41         datacache.o
42
43 include $(PATH_TO_TOP)/rules.mak
44
45 include $(TOOLS_PATH)/helper.mk
46
47 # EOF