Changeset 398 for branches


Ignore:
Timestamp:
Feb 8, 2012, 8:38:37 AM (14 years ago)
Author:
rlw
Message:

use $(MAKE) instead of explicitly specifying nmake

Location:
branches/branch-1-0
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/branch-1-0/makefile

    r8 r398  
    1313all:
    1414    @cd src\helpers
    15     nmake -nologo "MAINMAKERUNNING=YES"
     15    $(MAKE) -nologo "MAINMAKERUNNING=YES"
    1616    @cd ..\..
    1717
  • branches/branch-1-0/src/helpers/makefile

    r395 r398  
    132132    @echo $(MAKEDIR)\makefile: Recursing to main makefile.
    133133    @cd $(PROJECT_BASE_DIR)
    134     @nmake
     134    @$(MAKE) -nologo
    135135    @echo $(MAKEDIR)\makefile: Returned from main makefile. Done.
    136136
  • branches/branch-1-0/src/helpers/makefile_dll

    r9 r398  
    4040    @echo $(MAKEDIR)\makefile: Recursing to main makefile.
    4141    @cd $(PROJECT_BASE_DIR)
    42     @nmake
     42    $(MAKE) -nologo
    4343    @echo $(MAKEDIR)\makefile: Returned from main makefile. Done.
    4444
Note: See TracChangeset for help on using the changeset viewer.