source: trunk/src/odinprof/makefile@ 10366

Last change on this file since 10366 was 10228, checked in by sandervl, 22 years ago

* empty log message *

File size: 1.0 KB
Line 
1# $Id: makefile,v 1.6 2003-08-11 16:35:47 sandervl Exp $
2
3#
4# Odin32 API
5#
6# odinprof.dll makefile
7#
8
9
10#
11# Tell the buildenvironment not to
12#
13NOTEXPDEF = 1
14STATIC_CRT = 1
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
30OBJ_PROFILE =
31LIB_PROFILE =
32
33
34#
35# Object files. All objects should be prefixed with $(OBJDIR)!
36#
37OBJS = \
38$(OBJDIR)\odinprof.obj \
39$(OBJDIR)\initterm.obj \
40$(OBJDIR)\profiler.obj \
41$(OBJDIR)\profasm.obj \
42$(OBJDIR)\profcollection.obj \
43$(OBJDIR)\symfile.obj
44
45
46#
47# Libraries. One space before the '\'.
48#
49LIBS = $(LIB_DEMANGLE) \
50$(ODIN32_LIB)/libwrap.lib \
51!if "$(LIB_DEMANGLE)" == ""
52!error demangle not configured for this compiler
53!endif
54
55
56#
57# Target name - name of the dll without extention and path.
58#
59TARGET = odinprof
60
61
62#
63# Includes the common rules.
64#
65!include $(ODIN32_POST_INC)
66
Note: See TracBrowser for help on using the repository browser.