source: trunk/src/version/makefile@ 10366

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

* empty log message *

File size: 864 bytes
Line 
1# $Id: makefile,v 1.22 2003-10-29 19:18:14 sandervl Exp $
2
3#
4# Odin32 API
5#
6# version.dll makefile
7#
8
9!if "$(DEBUG)" == "1"
10DEFFILE = versiondbg.def
11ORGDEFFILE = version.def
12!endif
13
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)\install.obj \
26$(OBJDIR)\info.obj \
27$(OBJDIR)\resource.obj \
28$(OBJDIR)\dbglocal.obj \
29!ifdef DEBUG
30$(OBJDIR)\dbgwrap.obj \
31!endif
32$(OBJDIR)\versionrsrc.obj \
33$(DLLENTRY)
34
35
36#
37# Libraries. One space before the '\'.
38#
39LIBS = \
40$(ODIN32_LIB)/kernel32.lib \
41$(ODIN32_LIB)/user32.lib \
42$(ODIN32_LIB)/$(ODINCRT).lib \
43$(ODIN32_LIB)/lz32.lib \
44OS2386.LIB \
45$(RTLLIB_O)
46
47
48#
49# Target name - name of the dll without extention and path.
50#
51TARGET = version
52
53
54#
55# Includes the common rules.
56#
57!include $(ODIN32_POST_INC)
58
Note: See TracBrowser for help on using the repository browser.