summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>2003-02-24 14:58:21 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>2003-02-24 14:58:21 +0000
commit3d18a457225efe835f63623082c6bb8af27074cd (patch)
treee7c8c63e9c4595c48a2e34649d8a9d32f214628f /examples
parent855f2137f9e9b8e1a753bc29fef75e1b87064b21 (diff)
downloadATCD-3d18a457225efe835f63623082c6bb8af27074cd.tar.gz
ChangeLogTag:Sun Feb 23 12:16:34 2003 Douglas C. Schmidt <schmidt@tango.doc.wustl.edu>
Diffstat (limited to 'examples')
-rw-r--r--examples/Mem_Map/Makefile12
1 files changed, 10 insertions, 2 deletions
diff --git a/examples/Mem_Map/Makefile b/examples/Mem_Map/Makefile
index 4a1ef282611..d108b7cf4b3 100644
--- a/examples/Mem_Map/Makefile
+++ b/examples/Mem_Map/Makefile
@@ -8,14 +8,22 @@
# Local macros
#----------------------------------------------------------------------------
-DIRS = IO-tests \
- file-reverse
+# move definition of DIRS below so we can exclude one of them from
+# mingw build
#----------------------------------------------------------------------------
# macros and targets
#----------------------------------------------------------------------------
include $(ACE_ROOT)/include/makeinclude/wrapper_macros.GNU
+
+ifneq ($(mingw32), 1)
+ DIRS = IO-tests \
+ file-reverse
+else
+ DIRS = file-reverse
+endif
+
include $(ACE_ROOT)/include/makeinclude/macros.GNU
include $(ACE_ROOT)/include/makeinclude/rules.common.GNU
include $(ACE_ROOT)/include/makeinclude/rules.nested.GNU