Changeset 845 for trunk/makefile


Ignore:
Timestamp:
Sep 6, 1999, 3:44:18 AM (26 years ago)
Author:
bird
Message:

Added making of tools required for compilation.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/makefile

    r23 r845  
    1 # $Id: makefile,v 1.2 1999-06-01 08:43:08 phaller Exp $
     1# $Id: makefile,v 1.3 1999-09-06 01:44:18 bird Exp $
    22
    33#
    4 # PD-Win32 API 
     4# PD-Win32 API
    55#
    66#       Top of the tree makefile
     
    88#
    99#       Usage: nmake ( debug | release | all | clean )
    10 # 
     10#
    1111#            debug: Change to a debug build.
    1212#            release: Change to a release build.
     
    1414#            clean: Bring tree back to a "virgin" state.
    1515#
    16 #             
    17 # 
     16#
     17#
    1818
    19 all:            odin_libraries
     19all:            odin_libraries  needed_tools
    2020                cd src
    2121                nmake -nologo all
    2222
    23 clean:          odin_libraries
     23clean:          odin_libraries  needed_tools
    2424                cd src
    2525                nmake -nologo clean
    2626
    27 debug:          odin_libraries
     27debug:          odin_libraries  needed_tools
    2828                cd src
    2929                nmake -nologo all DEBUG=1
    3030
    31 release:        odin_libraries
     31release:        odin_libraries  needed_tools
    3232                cd src
    33                 nmake -nologo all 
     33                nmake -nologo all
    3434
    3535
     
    4141        cd ..
    4242
     43
     44needed_tools:
     45    cd tools
     46    nmake needed
     47    cd ..
Note: See TracChangeset for help on using the changeset viewer.