summaryrefslogtreecommitdiff
path: root/templates/nmake.mpd
diff options
context:
space:
mode:
authorelliott_c <ocielliottc@users.noreply.github.com>2007-03-26 15:24:09 +0000
committerelliott_c <ocielliottc@users.noreply.github.com>2007-03-26 15:24:09 +0000
commitedad9ad53afab526398c4723b94f2c837d978e84 (patch)
treee2a0d5425bb54bdbc10537aba7d77a62a1e0a5f7 /templates/nmake.mpd
parent47ae639f415772e0599ce0176865fa7e3dc7e5ed (diff)
downloadMPC-edad9ad53afab526398c4723b94f2c837d978e84.tar.gz
ChangeLogTag: Mon Mar 26 16:22:00 UTC 2007 Chad Elliott <elliott_c@ociweb.com>
Diffstat (limited to 'templates/nmake.mpd')
-rw-r--r--templates/nmake.mpd10
1 files changed, 6 insertions, 4 deletions
diff --git a/templates/nmake.mpd b/templates/nmake.mpd
index a2c28ef8..63e9d282 100644
--- a/templates/nmake.mpd
+++ b/templates/nmake.mpd
@@ -39,7 +39,9 @@ NULL=nul
!ENDIF
!IF "$(DEPGEN)" == ""
-!IF EXISTS("$(DEPGEN_ROOT)/depgen.pl")
+!IF EXISTS("$(MPC_ROOT)/depgen.pl")
+DEPGEN=perl $(MPC_ROOT)/depgen.pl -i -t nmake
+!ELSEIF EXISTS("$(DEPGEN_ROOT)/depgen.pl")
DEPGEN=perl $(DEPGEN_ROOT)/depgen.pl -i -t nmake
!ELSEIF EXISTS("$(ACE_ROOT)/bin/depgen.pl")
DEPGEN=perl $(ACE_ROOT)/bin/depgen.pl -i -t nmake
@@ -71,9 +73,9 @@ ALL :<%if(prebuild)%> __prebuild__<%endif%> DEPENDCHECK $(GENERATED_DIRTY)<%if(e
DEPEND :
!IF "$(DEPGEN)" == ""
@echo No suitable dependency generator could be found.
- @echo You can check one out from the DOC Group using the following svn command:
- @echo svn co svn://svn.dre.vanderbilt.edu/DOC/ACE/trunk/ACE/bin Utils
- @echo Then set the DEPGEN_ROOT environment variable to the full path of Utils.
+ @echo One comes with MPC, just set the MPC_ROOT environment variable
+ @echo to the full path of MPC. You can download MPC from
+ @echo http://www.ociweb.com/products/mpc/down.html
!ELSE
<%if(source_files || pch_source)%>
$(DEPGEN)<%foreach(includes)%> -I"<%include%>"<%endfor%><%foreach(defines cpu_defines common_defines platform_defines macros)%> -D<%define%><%endfor%><%if(unicode)%> -DUNICODE -D_UNICODE<%endif%><%if(type_is_dynamic)%><%foreach(dynamicflags)%> -D<%dynamicflag%><%endfor%><%endif%><%if(need_staticflags)%><%foreach(staticflags)%> -D<%staticflag%><%endfor%><%endif%><%if(pch_header)%><%foreach(pch_defines)%> -D<%pch_define%><%endfor%><%endif%> -f "<%noextension(project_file)%>.dep"<%foreach(source_files)%> "<%source_file%>"<%endfor%><%if(pch_source)%> "<%pch_source%>"<%endif%>