Changeset 23 for trunk/makefile


Ignore:
Timestamp:
Jun 1, 1999, 10:43:08 AM (26 years ago)
Author:
phaller
Message:

Added support for automatic building of ODIN support libraries in the "\lib" directory.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/makefile

    r4 r23  
    1 # $Id: makefile,v 1.1 1999-05-24 20:19:05 ktk Exp $
     1# $Id: makefile,v 1.2 1999-06-01 08:43:08 phaller Exp $
    22
    33#
     
    1717#
    1818
    19 all:
    20         cd src
    21         nmake -nologo all
     19all:            odin_libraries
     20                cd src
     21                nmake -nologo all
    2222
    23 clean:
    24         cd src
    25         nmake -nologo clean
     23clean:          odin_libraries
     24                cd src
     25                nmake -nologo clean
    2626
    27 debug:
    28         cd src
    29         nmake -nologo all DEBUG=1
     27debug:          odin_libraries
     28                cd src
     29                nmake -nologo all DEBUG=1
    3030
    31 release:
    32         cd src
    33         nmake -nologo all
     31release:        odin_libraries
     32                cd src
     33                nmake -nologo all
     34
     35
     36
     37# --- common section ---
     38odin_libraries:
     39        cd lib
     40        nmake -nologo
     41        cd ..
     42
Note: See TracChangeset for help on using the changeset viewer.