Mercurial > hg > Members > kono > nitros9-code
changeset 394:369698ee11f4
Cleaned up makefiles a bit
author | boisy |
---|---|
date | Sun, 25 Aug 2002 19:38:15 +0000 |
parents | faba76628bfd |
children | 35d038fa4f85 |
files | 3rdparty/fmgrs/makefile 3rdparty/packages/makefile |
diffstat | 2 files changed, 6 insertions(+), 6 deletions(-) [+] |
line wrap: on
line diff
--- a/3rdparty/fmgrs/makefile Sun Aug 25 19:36:44 2002 +0000 +++ b/3rdparty/fmgrs/makefile Sun Aug 25 19:38:15 2002 +0000 @@ -7,10 +7,10 @@ @$(ECHO) "* 3rd Party File Managers *" @$(ECHO) "* *" @$(ECHO) "*********************************************" - cd msf; make - cd cdf; make + $(CD) msf; make + $(CD) cdf; make # Clean all components clean: - cd msf; make clean - cd cdf; make clean + $(CD) msf; make clean + $(CD) cdf; make clean
--- a/3rdparty/packages/makefile Sun Aug 25 19:36:44 2002 +0000 +++ b/3rdparty/packages/makefile Sun Aug 25 19:38:15 2002 +0000 @@ -9,8 +9,8 @@ @$(ECHO) "* 3rd Software Packages *" @$(ECHO) "* *" @$(ECHO) "*********************************************" - cd rof; make + $(CD) rof; make clean: - -cd rof; make clean + -$(CD) rof; make clean