source: trunk/makefile@ 689

Last change on this file since 689 was 23, checked in by phaller, 26 years ago

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

File size: 671 bytes
Line 
1# $Id: makefile,v 1.2 1999-06-01 08:43:08 phaller Exp $
2
3#
4# PD-Win32 API
5#
6# Top of the tree makefile
7#
8#
9# Usage: nmake ( debug | release | all | clean )
10#
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#
16#
17#
18
19all: odin_libraries
20 cd src
21 nmake -nologo all
22
23clean: odin_libraries
24 cd src
25 nmake -nologo clean
26
27debug: odin_libraries
28 cd src
29 nmake -nologo all DEBUG=1
30
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 TracBrowser for help on using the repository browser.