Remove unused file
[reactos.git] / reactos / lib / imagehlp / makefile
1 PATH_TO_TOP = ../..
2
3 TARGET_TYPE = dynlink
4
5 TARGET_NAME = imagehlp
6
7 TARGET_CFLAGS = \
8 -Wall \
9 -fno-builtin
10
11 # Compile definitions usage:
12 # __USE_W32API - Compilation with w32api headers
13 # __REACTOS__ - Compilation of Wine sources for ReactOS
14 # _WIN32_IE=0x600 - Internet Explorer 6 compatible defintions
15 # WINVER=0x501 - Windows XP definitions
16 # __need_offsetof - Force definition of macro offsetof in stddef.h
17 #
18 DEFINES = \
19 -D_DISABLE_TIDENTS \
20 -D__USE_W32API \
21 -D__REACTOS__ \
22 -D_WIN32_IE=0x600 \
23 -D_WIN32_WINNT=0x501 \
24 -DWINVER=0x501 \
25 -DCOBJMACROS \
26 -D__need_offsetof
27
28 TARGET_CFLAGS += \
29 $(DEFINES) \
30 -DDCX_USESTYLE=0x10000L \
31 -I$(PATH_TO_TOP)/include/wine
32
33
34 TARGET_RCFLAGS += -D__REACTOS__ -D_WIN32_IE=0x600 -D_WIN32_WINNT=0x501
35
36 TARGET_LFLAGS = -nostartfiles -nostdlib
37
38 TARGET_SDKLIBS = wine.a ntdll.a kernel32.a
39
40 TARGET_BASE = $(TARGET_BASE_LIB_IMAGEHLP)
41
42 TARGET_OBJECTS = \
43 debug.o \
44 imagehlp_main.o \
45 integrity.o \
46 modify.o \
47 symbol.o \
48 access.o
49
50 DEP_OBJECTS = $(TARGET_OBJECTS)
51
52 include $(PATH_TO_TOP)/rules.mak
53
54 include $(TOOLS_PATH)/helper.mk
55
56 # include $(TOOLS_PATH)/depend.mk