source: trunk/src/shlwapi/makefile@ 10366

Last change on this file since 10366 was 8584, checked in by sandervl, 23 years ago

resynced with latest Wine

File size: 1.2 KB
Line 
1# $Id: makefile,v 1.27 2002-06-07 08:02:17 sandervl Exp $
2
3#
4# Odin32 API
5#
6# shlwapi.dll makefile
7#
8
9
10#
11# Compiler, tools, and interference rules.
12#
13!if "$(DEBUG)" == "1"
14DEFFILE = shlwapidbg.def
15ORGDEFFILE = shlwapi.def
16!endif
17
18!include ../../makefile.inc
19
20
21#
22# Object files. Prefix with OBJDIR and one space before the '\'.
23#
24OBJS = \
25$(OBJDIR)\shlwapi.obj \
26$(OBJDIR)\shlwapi_main.obj \
27$(OBJDIR)\shlstub.obj \
28$(OBJDIR)\url.obj \
29$(OBJDIR)\url_odin.obj \
30$(OBJDIR)\reg_odin.obj \
31$(OBJDIR)\reg.obj \
32$(OBJDIR)\regstream.obj \
33$(OBJDIR)\path.obj \
34$(OBJDIR)\string_odin.obj \
35$(OBJDIR)\string.obj \
36$(OBJDIR)\ordinal.obj \
37$(OBJDIR)\ordinal_odin.obj \
38$(OBJDIR)\wsprintf.obj \
39!if "$(DEBUG)" == "1"
40$(OBJDIR)\dbgwrap.obj \
41!endif
42$(OBJDIR)\shlwapirsrc.obj \
43$(DLLENTRY)
44
45
46#
47# Libraries. One space before the '\'.
48#
49LIBS = \
50$(ODIN32_LIB)/kernel32.lib \
51$(ODIN32_LIB)/advapi32.lib \
52$(ODIN32_LIB)/ntdll.lib \
53$(ODIN32_LIB)/user32.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 name - name of the dll without extention and path.
63#
64TARGET = shlwapi
65
66
67#
68# Includes the common rules.
69#
70!include $(ODIN32_POST_INC)
71
Note: See TracBrowser for help on using the repository browser.