| 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 | #
|
|---|
| 13 | NOTEXPDEF = 1
|
|---|
| 14 | STATIC_CRT = 1
|
|---|
| 15 |
|
|---|
| 16 | #
|
|---|
| 17 | # Compiler, tools, and interference rules.
|
|---|
| 18 | #
|
|---|
| 19 | !include ../../makefile.inc
|
|---|
| 20 |
|
|---|
| 21 |
|
|---|
| 22 | #
|
|---|
| 23 | # Overrides.
|
|---|
| 24 | #
|
|---|
| 25 | CXXFLAGS = $(CXXFLAGS_ODINCRT)
|
|---|
| 26 | LD2FLAGS = $(LD2FLAGS_ODINCRT)
|
|---|
| 27 | CDEFINES = $(CDEFINES_ODINCRT)
|
|---|
| 28 | IMPLIBFLAGS = $(IMPLIBFLAGS) /NOIgnoreCase
|
|---|
| 29 | DEFFILE = odinprof.def
|
|---|
| 30 | OBJ_PROFILE =
|
|---|
| 31 | LIB_PROFILE =
|
|---|
| 32 |
|
|---|
| 33 |
|
|---|
| 34 | #
|
|---|
| 35 | # Object files. All objects should be prefixed with $(OBJDIR)!
|
|---|
| 36 | #
|
|---|
| 37 | OBJS = \
|
|---|
| 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 | #
|
|---|
| 49 | LIBS = $(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 | #
|
|---|
| 59 | TARGET = 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.