summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcoryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-07-01 14:32:33 +0000
committercoryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-07-01 14:32:33 +0000
commit3ccf6484cd0ae3b01c88a023cd49721dd0c789a1 (patch)
tree9ebdf3001cf5ae7b6afd4360c40d22fff17d794d
parenta2cfcd6739df8117f5d739c0f6ff51addb759b3c (diff)
downloadATCD-3ccf6484cd0ae3b01c88a023cd49721dd0c789a1.tar.gz
ChangeLogTag:Thu Jul 1 09:31:32 1999 Carlos O'Ryan <coryan@cs.wustl.edu>
-rw-r--r--apps/gperf/ChangeLog6
-rw-r--r--apps/gperf/Makefile6
2 files changed, 9 insertions, 3 deletions
diff --git a/apps/gperf/ChangeLog b/apps/gperf/ChangeLog
index 5dcdb39e2b2..b610fa6afa4 100644
--- a/apps/gperf/ChangeLog
+++ b/apps/gperf/ChangeLog
@@ -1,3 +1,9 @@
+Thu Jul 1 09:31:32 1999 Carlos O'Ryan <coryan@cs.wustl.edu>
+
+ * Makefile:
+ If we are cross compiling we shouldn't compile gperf, it is not
+ going to help anyway, because we could not run it.
+
Sun Jun 27 20:40:30 1999 Douglas C. Schmidt <schmidt@ace.cs.wustl.edu>
* src/Key_List.cpp: Added some initializers to keep EGCS from
diff --git a/apps/gperf/Makefile b/apps/gperf/Makefile
index bd1932f4f94..24d0d5f2b3f 100644
--- a/apps/gperf/Makefile
+++ b/apps/gperf/Makefile
@@ -10,8 +10,6 @@
INFO = README
-DIRS = src
-
#----------------------------------------------------------------------------
# Include macros and targets
#----------------------------------------------------------------------------
@@ -19,7 +17,9 @@ DIRS = src
include $(ACE_ROOT)/include/makeinclude/wrapper_macros.GNU
ifeq ($(CROSS-COMPILE),)
- DIRS += tests
+ DIRS = src tests
+else
+ DIRS=
endif # ! CROSS-COMPILE
include $(ACE_ROOT)/include/makeinclude/macros.GNU