source: trunk/tools/SDF/makefile@ 10366

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

New makefile style.

File size: 1.0 KB
Line 
1# $Id: makefile,v 1.4 2000-12-02 23:26:57 bird Exp $
2
3#
4# Odin32 API
5#
6# Makefile for the SDF utility.
7#
8#
9
10
11#
12# Directory macros.
13#
14ODIN32_TCOMMON = ..\common
15ODIN32_BIN = $(ODIN32_TOOLS)
16
17
18#
19# Tell buildenvironment that we're makeing an .exe.
20# Tell buildenvironment that we should not copy this into /bin.
21#
22EXETARGET = 1
23NO_MAIN_BIN_COPY = 1
24
25
26#
27# Compiler, tools, and interference rules.
28#
29!include ../../makefile.inc
30!include $(ODIN32_TCOMMON)\common.mk
31
32
33#
34# Flag overrides.
35#
36!if "$(VAC3)" == "1" || "$(VAC36)" == "1"
37CFLAGS = $(CFLAGS) -Wall+ppt-ppc-inl-cnv-gnr-vft-
38CXXFLAGS = $(CXXFLAGS) -Gx- -Wall+ppt-ppc-inl-cnv-gnr-vft-
39!endif
40
41
42#
43# Object files. Prefix with OBJDIR and one space before the '\'.
44#
45OBJS= \
46$(OBJDIR)\sdf.obj
47
48
49#
50# Libraries. One space before the '\'.
51#
52LIBS = \
53$(COMMONLIB) \
54$(RTLLIB) \
55os2386.lib
56
57
58#
59# Target name - name of the exe without extention and path.
60#
61TARGET = sdf
62
63
64#
65# Includes the common rules.
66#
67!include $(ODIN32_POST_INC)
68!include $(ODIN32_TCOMMON_POST_INC)
69
Note: See TracBrowser for help on using the repository browser.