source: trunk/src/setupapi/makefile@ 10367

Last change on this file since 10367 was 8670, checked in by sandervl, 23 years ago

added debug wrappers

File size: 1.0 KB
Line 
1# $Id: makefile,v 1.3 2002-06-15 10:56:59 sandervl Exp $
2
3#
4# Odin32 API
5#
6# setupapi.dll makefile
7#
8
9
10!if "$(DEBUG)" == "1"
11DEFFILE = setupapidbg.def
12ORGDEFFILE = setupapi.def
13!endif
14
15#
16# Compiler, tools, and interference rules.
17#
18!include ../../makefile.inc
19
20
21#
22# Object files. Prefix with OBJDIR and one space before the '\'.
23#
24OBJS = \
25$(OBJDIR)\devinst.obj \
26$(OBJDIR)\dirid.obj \
27$(OBJDIR)\infparse.obj \
28$(OBJDIR)\install.obj \
29$(OBJDIR)\parser.obj \
30$(OBJDIR)\queue.obj \
31$(OBJDIR)\stubs.obj \
32##$(OBJDIR)\virtcopy.obj \
33$(OBJDIR)\setupapirsrc.obj \
34!if "$(DEBUG)" == "1"
35$(OBJDIR)\dbgwrap.obj \
36!endif
37$(DLLENTRY)
38
39
40#
41# Libraries. One space before the '\'.
42#
43LIBS = \
44$(ODIN32_LIB)/kernel32.lib \
45$(ODIN32_LIB)/user32.lib \
46$(ODIN32_LIB)/gdi32.lib \
47$(ODIN32_LIB)/ntdll.lib \
48$(ODIN32_LIB)/ole32.lib \
49$(ODIN32_LIB)/$(ODINCRT).lib \
50OS2386.LIB \
51$(RTLLIB_O)
52
53
54#
55# Target name - name of the dll without extention and path.
56#
57TARGET = setupapi
58
59
60#
61# Includes the common rules.
62#
63!include $(ODIN32_POST_INC)
64
Note: See TracBrowser for help on using the repository browser.