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

Last change on this file since 4700 was 4654, checked in by bird, 25 years ago

Addopted makestyle new style. common.lib goes into $(OBJDIR).

File size: 995 bytes
Line 
1# $Id: kDump.mak,v 1.1 2000-11-21 04:37:23 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#
13PDWIN32_TCOMMON = .
14PDWIN32_BIN = ..\bin
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 ../../include/pdwin32.mk
34!include $(PDWIN32_TCOMMON)/common.mk
35
36
37#
38# Object files. Prefix with OBJDIR and one space before the '\'.
39#
40OBJS = \
41$(OBJDIR)\kDump.obj
42
43
44#
45# Libraries. One space before the '\'.
46#
47LIBS = \
48$(COMMONLIB) \
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 $(PDWIN32_INCLUDE)/pdwin32.post
63!include $(PDWIN32_TCOMMON)/common.mk.post
64
Note: See TracBrowser for help on using the repository browser.