source: trunk/src/odinprof/makefile@ 8889

Last change on this file since 8889 was 7998, checked in by bird, 24 years ago

Cleaned up demangle mess.

File size: 958 bytes
Line 
1# $Id: makefile,v 1.2 2002-02-23 23:50:47 bird Exp $
2
3#
4# Odin32 API
5#
6# odinprof.dll makefile
7#
8
9
10#
11# Tell the buildenvironment not to
12#
13NOTEXPDEF = 1
14
15
16#
17# Compiler, tools, and interference rules.
18#
19!include ../../makefile.inc
20
21
22#
23# Overrides.
24#
25CXXFLAGS = $(CXXFLAGS_ODINCRT)
26LD2FLAGS = $(LD2FLAGS_ODINCRT)
27CDEFINES = $(CDEFINES_ODINCRT)
28IMPLIBFLAGS = $(IMPLIBFLAGS) /NOIgnoreCase
29DEFFILE = odinprof.def
30
31
32#
33# Object files. All objects should be prefixed with $(OBJDIR)!
34#
35OBJS = \
36$(OBJDIR)\odinprof.obj \
37$(OBJDIR)\initterm.obj \
38$(OBJDIR)\profiler.obj \
39$(OBJDIR)\profasm.obj \
40$(OBJDIR)\profcollection.obj \
41$(OBJDIR)\symfile.obj
42
43
44#
45# Libraries. One space before the '\'.
46#
47LIBS = $(LIB_DEMANGLE)
48!if "$(LIB_DEMANGLE)" == ""
49!error demangle not configured for this compiler
50!endif
51
52
53#
54# Target name - name of the dll without extention and path.
55#
56TARGET = odinprof
57
58
59#
60# Includes the common rules.
61#
62!include $(ODIN32_POST_INC)
63
Note: See TracBrowser for help on using the repository browser.