|
Last change
on this file since 577 was 289, checked in by root, 19 years ago |
|
Add cleanobj
|
-
Property svn:eol-style
set to
native
-
Property svn:keywords
set to
Author Date Id Revision
|
|
File size:
496 bytes
|
| Line | |
|---|
| 1 | # makefile - build makestr.exe
|
|---|
| 2 | # $Id: makefile 289 2006-06-27 00:12:32Z root $
|
|---|
| 3 |
|
|---|
| 4 | BASE=mkstr
|
|---|
| 5 |
|
|---|
| 6 | !include ..\..\makefile_pre.mk
|
|---|
| 7 |
|
|---|
| 8 | CFLAGS = /G5 /Gm+ /Gs- /Gt- /Mp /O+ /Q+ /Sm /Ss /W3
|
|---|
| 9 | LFLAGS = /EXEPACK:2 /MAP /PMTYPE:VIO
|
|---|
| 10 |
|
|---|
| 11 | all: $(BASE).exe
|
|---|
| 12 |
|
|---|
| 13 | $(BASE).obj: $(BASE).c ..\version.h ..\fm3str.h
|
|---|
| 14 |
|
|---|
| 15 | $(BASE).exe: $(BASE).obj
|
|---|
| 16 | @REM @<<$(BASE).lrf
|
|---|
| 17 | $(LFLAGS)
|
|---|
| 18 | $(BASE).obj
|
|---|
| 19 | os2386.lib
|
|---|
| 20 | <<
|
|---|
| 21 | type $(BASE).lrf
|
|---|
| 22 | $(LINK) @$(BASE).lrf
|
|---|
| 23 |
|
|---|
| 24 | clean:
|
|---|
| 25 | -del $(BASE).exe
|
|---|
| 26 | -del $(BASE).lrf
|
|---|
| 27 | -del $(BASE).map
|
|---|
| 28 | -del $(BASE).obj
|
|---|
| 29 |
|
|---|
| 30 | cleanobj:
|
|---|
| 31 | -del $(BASE).obj
|
|---|
| 32 |
|
|---|
| 33 | # The end
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.