source:
trunk/makefile@
105
Last change on this file since 105 was 74, checked in by , 22 years ago | |
---|---|
|
|
File size: 459 bytes |
Rev | Line | |
---|---|---|
[74] | 1 | # makefile - build fm/2 |
2 | # $Id: makefile 74 2003-11-22 02:47:17Z root $ | |
[2] | 3 | |
[74] | 4 | # Revisions: 21 Nov 03 SHL - Comments |
5 | ||
6 | # Environment: | |
7 | ||
8 | # DEBUG 0 = release build, 1 = debug build | |
9 | ||
[15] | 10 | BASE = fm3 |
[2] | 11 | |
[15] | 12 | !INCLUDE makefile_pre.mk |
[2] | 13 | |
[15] | 14 | ALL: DLL $(BASE) MAK |
[2] | 15 | |
[15] | 16 | DLL: |
17 | cd dll | |
18 | $(MAKE) /nologo $(MAKEFLAGS) | |
19 | cd .. | |
[2] | 20 | |
[15] | 21 | $(BASE): $(BASE).EXE \ |
22 | $(BASE).res | |
[2] | 23 | |
[15] | 24 | $(BASE).res: $(BASE).rc \ |
25 | $(BASE).h | |
[2] | 26 | |
[15] | 27 | $(BASE).obj: $(BASE).c \ |
28 | $(BASE).h dll\version.h | |
[2] | 29 | |
[74] | 30 | MAK: *.mak |
[15] | 31 | !$(MAKE) /NOLOGO /f $? |
[2] | 32 | |
[15] | 33 | !INCLUDE makefile_post.mk |
34 | ||
35 | # The end |
Note:
See TracBrowser
for help on using the repository browser.