source: trunk/tools/common/kDump.mak@ 10367

Last change on this file since 10367 was 5053, checked in by bird, 25 years ago

Corrected kFileLX and kFilePE constructors.
Made kDump.exe work again.
Added import module dump to kFilePE.

File size: 979 bytes
Line 
1# $Id: kDump.mak,v 1.3 2001-02-02 08:45:41 bird Exp $
2
3#
4# Odin32 API
5#
6# kDump.exe makefile
7#
8
9
10#
11# Macro which defines the tools common directory.
12#
13ODIN32_TCOMMON = .
14ODIN32_BIN = $(ODIN32_TOOLS)
15
16
17#
18# Tell that we're producing an vio executable.
19# Tell buildenvironment that we like to use static linked CRT.
20# Tell that we're not to be copied to /bin.
21# Tell that the makefile has another name.
22#
23EXETARGET = 1
24VIO = 1
25STATIC_CRT = 1
26NO_MAIN_BIN_COPY = 1
27MAKEFILE = kDump.mak
28
29
30#
31# Compiler, tools, and interference rules.
32#
33!include ../../makefile.inc
34!include $(ODIN32_TCOMMON)/common.mk
35
36
37#
38# Object files. Prefix with OBJDIR and one space before the '\'.
39#
40OBJS = \
41$(OBJDIR)\kDump.obj \
42$(COMMONLIB)
43
44
45#
46# Libraries. One space before the '\'.
47#
48LIBS = \
49$(RTLLIB) \
50os2386.lib
51
52
53#
54# Target name - name of the dll without extention and path.
55#
56TARGET = kDump
57
58
59#
60# Includes the common rules.
61#
62!include $(ODIN32_POST_INC)
63!include $(ODIN32_TCOMMON_POST_INC)
64
Note: See TracBrowser for help on using the repository browser.