Changeset 7994 for trunk/makefile


Ignore:
Timestamp:
Feb 24, 2002, 12:13:08 AM (24 years ago)
Author:
bird
Message:

Corrected problemous odin_library rules.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/makefile

    r7505 r7994  
    1 # $Id: makefile,v 1.18 2001-11-30 18:30:51 phaller Exp $
     1# $Id: makefile,v 1.19 2002-02-23 23:13:08 bird Exp $
    22
    33#
     
    1515#            nodebuginfosmp: Change to an SMP debug build without debug info in binaries
    1616#            profile: Change to a debug build with profiling hooks
     17#            profilesmp: Change to an SMP debug build with profiling hooks
    1718#            release: Change to a release build.
    1819#            releasesmp: Change to an SMP release build.
     
    7071# Special build mode rules.
    7172#
    72 debug:          odin_libraries  needed
     73debug:          odin_libraries_debug   needed
    7374    @$(DODIRS) "$(BLDDIRS)"     $(MAKE_CMD) DEBUG=1 all
    7475
    75 debugsmp:       odin_libraries  needed
     76debugsmp:       odin_libraries_debug   needed
    7677    @$(DODIRS) "src"            $(MAKE_CMD) DEBUG=1 smp
    7778    @$(DODIRS) "tools\install"  $(MAKE_CMD) DEBUG=1 all
    7879
    79 nodebuginfo:    odin_libraries  needed
     80nodebuginfo:    odin_libraries_debug   needed
    8081    @$(DODIRS) "$(BLDDIRS)"     $(MAKE_CMD) DEBUG=1 NODEBUGINFO=1 all
    8182
    82 nodebuginfosmp: odin_libraries  needed
     83nodebuginfosmp: odin_libraries_debug   needed
    8384    @$(DODIRS) "src"            $(MAKE_CMD) DEBUG=1 NODEBUGINFO=1 smp
    8485    @$(DODIRS) "tools\install"  $(MAKE_CMD) DEBUG=1 NODEBUGINFO=1 all
    8586
    86 profile:        odin_libraries  needed
     87profile:        odin_libraries_profile needed
    8788    SET PROFILEHOOKS=1
    8889    @$(DODIRS) "$(BLDDIRS)"     $(MAKE_CMD) DEBUG=1 PROFILE=1 all
     90    SET PROFILEHOOKS=
    8991
    90 profilesmp:     odin_libraries  needed
     92profilesmp:     odin_libraries_profile needed
     93    SET PROFILEHOOKS=1
    9194    @$(DODIRS) "src"            $(MAKE_CMD) DEBUG=1 PROFILE=1 smp
    9295    @$(DODIRS) "tools\install"  $(MAKE_CMD) DEBUG=1 PROFILE=1 all
     96    SET PROFILEHOOKS=
    9397
    94 release:        odin_libraries  needed
     98release:        odin_libraries_release needed
    9599    SET DEBUG=
    96100    @$(DODIRS) "$(BLDDIRS)"     $(MAKE_CMD) all
    97101
    98 releasesmp:     odin_libraries  needed
     102releasesmp:     odin_libraries_release needed
    99103    SET DEBUG=
    100104    @$(DODIRS) "src"            $(MAKE_CMD) smp
     
    108112    @$(DODIRS) "lib"            $(MAKE_CMD)
    109113
     114odin_libraries_debug:
     115    @$(DODIRS) "lib"            $(MAKE_CMD) DEBUG=1
     116
     117odin_libraries_profile:
     118    @$(DODIRS) "lib"            $(MAKE_CMD) PROFILE=1
     119
     120odin_libraries_release:
     121    SET DEBUG=
     122    @$(DODIRS) "lib"            $(MAKE_CMD)
     123
    110124needed_tools: needed
    111125needed:
Note: See TracChangeset for help on using the changeset viewer.