summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorelliott_c <ocielliottc@users.noreply.github.com>2003-10-01 11:58:58 +0000
committerelliott_c <ocielliottc@users.noreply.github.com>2003-10-01 11:58:58 +0000
commitc6517eab26603416bf669488bcb750ba085c35f0 (patch)
tree5b5d1cfaaa7b6da2770cf0e5a2425d2c370ce97f /apps
parent160e979fc89abf04f882f0b3e06741e07964c286 (diff)
downloadATCD-c6517eab26603416bf669488bcb750ba085c35f0.tar.gz
ChangeLogTag: Wed Oct 1 06:55:03 2003 Chad Elliott <elliott_c@ociweb.com>
Diffstat (limited to 'apps')
-rw-r--r--apps/drwho/drwho.mpc4
-rw-r--r--apps/drwho/nobuild.mpb26
2 files changed, 28 insertions, 2 deletions
diff --git a/apps/drwho/drwho.mpc b/apps/drwho/drwho.mpc
index 512f391d3e8..4490178d51d 100644
--- a/apps/drwho/drwho.mpc
+++ b/apps/drwho/drwho.mpc
@@ -1,4 +1,4 @@
-project(*-client) : aceexe {
+project(*-client) : aceexe, nobuild {
Source_Files {
Protocol_Manager.cpp
Drwho_Node.cpp
@@ -40,7 +40,7 @@ project(*-client) : aceexe {
}
}
-project(*-server) : aceexe {
+project(*-server) : aceexe, nobuild {
Source_Files {
Protocol_Manager.cpp
Drwho_Node.cpp
diff --git a/apps/drwho/nobuild.mpb b/apps/drwho/nobuild.mpb
new file mode 100644
index 00000000000..efcecf82140
--- /dev/null
+++ b/apps/drwho/nobuild.mpb
@@ -0,0 +1,26 @@
+project {
+ verbatim(gnuace, circuit) {
+ ifeq (1, $(VXWORKS))
+ nobuild = 1
+ else
+ ifeq (1, $(CHORUS))
+ nobuild = 1
+ else
+ ifeq (1, $(mingw32))
+ nobuild = 1
+ else
+ ifeq (1, $(cygwin32))
+ nobuild = 1
+ endif
+ endif
+ endif
+ endif
+ ifeq (1, $(nobuild))
+ all clean realclean idl_stubs:
+ " @echo drwho will not build on this platform"
+ else
+ }
+ verbatim(gnuace, bottom) {
+ endif # nobuild
+ }
+}