summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOssama Othman <ossama-othman@users.noreply.github.com>1999-04-07 20:53:13 +0000
committerOssama Othman <ossama-othman@users.noreply.github.com>1999-04-07 20:53:13 +0000
commit4fb82ec22a53d226a3e3257aa18ca176741f8f7b (patch)
tree7b62667a59132b582c69da7da41d6224dafb51d2
parent5010355e9f7cd9d1a2c7f339e5aa1b4d900b4f10 (diff)
downloadATCD-4fb82ec22a53d226a3e3257aa18ca176741f8f7b.tar.gz
Added `clean-local' targets to all Makefile.am files. Minor
updates to the top-level TAO Makefile.am.
-rw-r--r--TAO/ChangeLog-99c7
-rw-r--r--TAO/Makefile.am39
2 files changed, 25 insertions, 21 deletions
diff --git a/TAO/ChangeLog-99c b/TAO/ChangeLog-99c
index d4e92774af9..ab44e259f3d 100644
--- a/TAO/ChangeLog-99c
+++ b/TAO/ChangeLog-99c
@@ -1,3 +1,10 @@
+Wed Apr 7 15:52:06 1999 Ossama Othman <othman@cs.wustl.edu>
+
+ * Makefile.am:
+
+ Added `clean-local' targets to all Makefile.am files. Minor
+ updates to the top-level TAO Makefile.am.
+
Wed Apr 07 15:17:02 1999 Carlos O'Ryan <coryan@cs.wustl.edu>
* tao/POA_CORBA.h:
diff --git a/TAO/Makefile.am b/TAO/Makefile.am
index f0c130391ff..93430a3673a 100644
--- a/TAO/Makefile.am
+++ b/TAO/Makefile.am
@@ -17,32 +17,16 @@ bin_SCRIPTS = tao-config
man_MANS = tao-config.1
-SUBDIRS = tao \
- TAO_IDL
-##SUBDIRS = tao \
-## TAO_IDL \
-## orbsvcs \
-## examples \
-## performance-tests \
-## tests \
-## utils
+SUBDIRS = \
+ tao \
+ TAO_IDL \
+ orbsvcs
## For some reason, automake doesn't include acconfig.h in the distribution
EXTRA_DIST = BUG-REPORT-FORM VERSION \
COPYING.sun LICENSE.sun README.sun README.taoconf \
tao-config.in taoConf.sh.in tao-config.1.in
-##EXTRA_DIST = TAO-INSTALL.html \
-## ChangeLog-98b \
-## ChangeLog-98a \
-## ChangeLog-97 \
-## FAQ \
-## VERSION \
-## etc \
-## includes \
-## os-patches \
-## WindozeCE
-
DISTCLEANFILES = tao-config taoConf.sh tao-config.1
## release:
@@ -74,8 +58,21 @@ tao-config.1: tao-config.1.in Makefile
< $(srcdir)/tao-config.1.in > tao-config.1.tmp \
&& mv tao-config.1.tmp tao-config.1
+## Directories to include in the distribution but which I am too lazy to
+## create Makefile.am files for. A Makefile.am for these directories isn't
+## needed anyway.
+TAO_EXTRA_DIST = docs
+
dist-hook:
- tar cf - ./docs | (cd $(distdir); tar xfBp -)
+ (cd $(top_srcdir); tar cf - $(TAO_EXTRA_DIST)) | (cd $(distdir); \
+ tar xfBp -)
list=`find $(distdir) -type d -name CVS -print`; for p in $$list; do \
rm -rf $$p; \
done
+
+## Clean up some additional files/directories possibly created during
+## the configure script tests.
+clean-local:
+ -rm -f *.bak *.rpo *.sym lib*.*_pure_* Makefile.old core
+ -rm -rf ptrepository Templates.DB gcctemp.c gcctemp so_locations
+