source: trunk/tools/omfdumper/makefile@ 10366

Last change on this file since 10366 was 4712, checked in by bird, 25 years ago

New makefile style.

File size: 830 bytes
Line 
1# $Id: makefile,v 1.4 2000-12-02 23:27:02 bird Exp $
2
3#
4# Odin32 API
5#
6# Very simple OMF/LIB dumper.
7#
8
9#
10# Directory macros.
11#
12ODIN32_TCOMMON = ..\common
13ODIN32_BIN = $(ODIN32_TOOLS)
14
15
16#
17# Tell buildenvironment that we're makeing an .exe.
18# Tell buildenvironment that we should not copy this into /bin.
19#
20EXETARGET = 1
21NO_MAIN_BIN_COPY = 1
22
23
24#
25# Compiler, tools, and interference rules.
26#
27!include ../../makefile.inc
28!include $(ODIN32_TCOMMON)\common.mk
29
30
31#
32# Object files. Prefix with OBJDIR and one space before the '\'.
33#
34OBJS= \
35$(OBJDIR)\omfdumper.obj
36
37
38#
39# Libraries. One space before the '\'.
40#
41LIBS = \
42$(RTLLIB) \
43os2386.lib
44
45
46#
47# Target name - name of the exe without extention and path.
48#
49TARGET = omfdumper
50
51
52#
53# Includes the common rules.
54#
55!include $(ODIN32_POST_INC)
56!include $(ODIN32_TCOMMON_POST_INC)
57
Note: See TracBrowser for help on using the repository browser.