diff options
author | Ossama Othman <ossama-othman@users.noreply.github.com> | 1999-04-07 20:53:13 +0000 |
---|---|---|
committer | Ossama Othman <ossama-othman@users.noreply.github.com> | 1999-04-07 20:53:13 +0000 |
commit | 4fb82ec22a53d226a3e3257aa18ca176741f8f7b (patch) | |
tree | 7b62667a59132b582c69da7da41d6224dafb51d2 /TAO/Makefile.am | |
parent | 5010355e9f7cd9d1a2c7f339e5aa1b4d900b4f10 (diff) | |
download | ATCD-4fb82ec22a53d226a3e3257aa18ca176741f8f7b.tar.gz |
Added `clean-local' targets to all Makefile.am files. Minor
updates to the top-level TAO Makefile.am.
Diffstat (limited to 'TAO/Makefile.am')
-rw-r--r-- | TAO/Makefile.am | 39 |
1 files changed, 18 insertions, 21 deletions
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 + |