source: trunk/tools/common/common.mak@ 4804

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

Prepared for build level info.

File size: 771 bytes
Line 
1# $Id: common.mak,v 1.3 2000-12-16 20:10:07 bird Exp $
2
3#
4# Odin32 API
5#
6# common.lib makefile
7#
8
9
10#
11# Tell buildenvironmet to build an object library.
12#
13LIBTARGET = 1
14EXETARGET = 1
15
16
17#
18# Compiler, tools, and interference rules.
19#
20!include ../../makefile.inc
21
22
23#
24# We use exception, so we'll have to enable them.
25#
26!ifndef WAT
27CXXFLAGS = $(CXXFLAGS) $(CXXEXCEPTIONS)
28!else
29CXXFLAGS += $(CXXEXCEPTIONS)
30!endif
31
32
33#
34# Object files. Prefix with OBJDIR and one space before the '\'.
35#
36OBJS = \
37$(OBJDIR)\kFilePe.obj \
38$(OBJDIR)\kFileDef.obj \
39$(OBJDIR)\kFileLx.obj \
40$(OBJDIR)\kFileFormatBase.obj \
41$(OBJDIR)\kFile.obj
42
43
44#
45# Target name - name of the library without extention and path.
46#
47TARGET = common
48
49
50#
51# Includes the common rules.
52#
53!include $(ODIN32_POST_INC)
54
Note: See TracBrowser for help on using the repository browser.