source: trunk/src/gdi32/makefile@ 10366

Last change on this file since 10366 was 10229, checked in by sandervl, 22 years ago

* empty log message *

File size: 1.4 KB
Line 
1# $Id: makefile,v 1.44 2003-08-12 08:22:41 sandervl Exp $
2
3#
4# Odin32 API
5#
6# gdi32.dll makefile
7#
8
9
10!if "$(DEBUG)" == "1"
11DEFFILE = gdi32dbg.def
12ORGDEFFILE = gdi32.def
13!endif
14
15#
16# Compiler, tools, and interference rules.
17#
18WRC_PREFIX_RESOURCE=1
19!include ../../makefile.inc
20
21
22#
23# Overrides.
24#
25!ifndef WMAKE
26CDEFINES = $(CDEFINES) -DINVERT
27!else
28CDEFINES += -DINVERT
29!endif
30
31
32#
33# Object files. Prefix with OBJDIR and one space before the '\'.
34#
35OBJS = \
36$(OBJDIR)\gdi32.obj \
37$(OBJDIR)\icm.obj \
38$(OBJDIR)\driver.obj \
39$(OBJDIR)\opengl.obj \
40$(OBJDIR)\callback.obj \
41$(OBJDIR)\dibsect.obj \
42$(OBJDIR)\initterm.obj \
43$(OBJDIR)\initgdi32.obj \
44$(OBJDIR)\oslibgdi.obj \
45$(OBJDIR)\font.obj \
46$(OBJDIR)\text.obj \
47$(OBJDIR)\palette.obj \
48$(OBJDIR)\line.obj \
49$(OBJDIR)\oslibgpi.obj \
50$(OBJDIR)\region.obj \
51$(OBJDIR)\transform.obj \
52$(OBJDIR)\metafile.obj \
53$(OBJDIR)\dibitmap.obj \
54$(OBJDIR)\blit.obj \
55$(OBJDIR)\rgbcvt.obj \
56$(OBJDIR)\objhandle.obj \
57$(OBJDIR)\printer.obj \
58$(OBJDIR)\gdistats.obj \
59$(OBJDIR)\dbglocal.obj \
60!ifdef DEBUG
61$(OBJDIR)\dbgwrap.obj \
62!endif
63$(OBJDIR)\gdi32rsrc.obj
64
65
66#
67# Libraries. One space before the '\'.
68#
69LIBS = \
70$(ODIN32_LIB)/kernel32.lib \
71$(ODIN32_LIB)/user32.lib \
72$(ODIN32_LIB)/libwrap.lib \
73$(ODIN32_LIB)/$(ODINCRT).lib \
74$(ODIN32_LIB)/wgss50.lib \
75OS2386.LIB \
76$(RTLLIB_O)
77
78
79#
80# Target name - name of the dll without extention and path.
81#
82TARGET = gdi32
83
84#
85# Includes the common rules.
86#
87!include $(ODIN32_POST_INC)
88
Note: See TracBrowser for help on using the repository browser.