source: trunk/makefile@ 858

Last change on this file since 858 was 845, checked in by bird, 26 years ago

Added making of tools required for compilation.

File size: 760 bytes
RevLine 
[845]1# $Id: makefile,v 1.3 1999-09-06 01:44:18 bird Exp $
[4]2
3#
[845]4# PD-Win32 API
[4]5#
6# Top of the tree makefile
7#
8#
9# Usage: nmake ( debug | release | all | clean )
[845]10#
[4]11# debug: Change to a debug build.
12# release: Change to a release build.
13# all: Build the entire tree.
14# clean: Bring tree back to a "virgin" state.
15#
[845]16#
17#
[4]18
[845]19all: odin_libraries needed_tools
[23]20 cd src
21 nmake -nologo all
[4]22
[845]23clean: odin_libraries needed_tools
[23]24 cd src
25 nmake -nologo clean
[4]26
[845]27debug: odin_libraries needed_tools
[23]28 cd src
29 nmake -nologo all DEBUG=1
[4]30
[845]31release: odin_libraries needed_tools
[23]32 cd src
[845]33 nmake -nologo all
[23]34
35
36
37# --- common section ---
38odin_libraries:
39 cd lib
40 nmake -nologo
41 cd ..
42
[845]43
44needed_tools:
45 cd tools
46 nmake needed
47 cd ..
Note: See TracBrowser for help on using the repository browser.