summaryrefslogtreecommitdiffstats
path: root/config
diff options
context:
space:
mode:
authorAlbert Cheng <acheng@hdfgroup.org>2000-06-27 19:01:03 (GMT)
committerAlbert Cheng <acheng@hdfgroup.org>2000-06-27 19:01:03 (GMT)
commitff5aa653b27367d900509545bf1c8e2c19d300ca (patch)
tree53e1d67dacef6d45aaba9cd2d90c87743465273c /config
parent3c69d8be869a63b633d5cdd8df18d0a5285e97ae (diff)
downloadhdf5-ff5aa653b27367d900509545bf1c8e2c19d300ca.zip
hdf5-ff5aa653b27367d900509545bf1c8e2c19d300ca.tar.gz
hdf5-ff5aa653b27367d900509545bf1c8e2c19d300ca.tar.bz2
[svn-r2418] Added the variable, PUB_PROGS, which holds the public programs
that are to be installed.
Diffstat (limited to 'config')
-rw-r--r--config/commence.in1
-rw-r--r--config/conclude.in8
2 files changed, 5 insertions, 4 deletions
diff --git a/config/commence.in b/config/commence.in
index 1c66757..4356aa8 100644
--- a/config/commence.in
+++ b/config/commence.in
@@ -58,6 +58,7 @@ LIB=
LIB_SRC=
LIB_OBJ=
PUB_HDR=
+PUB_PROGS=
PROGS=
TEST_PROGS=
TEST_FLAGS=
diff --git a/config/conclude.in b/config/conclude.in
index 49be374..8965987 100644
--- a/config/conclude.in
+++ b/config/conclude.in
@@ -58,8 +58,8 @@ $(bindir):
$(DOCDIR):
mkdir $@ && chmod 755 $@
-## Install the library, the public header files, and programs.
-install: $(PUB_LIB) $(PUB_HDR) $(PROGS) $(libdir) $(includedir) $(bindir)
+## Install the library, the public header files, and public programs.
+install: $(PUB_LIB) $(PUB_HDR) $(PUB_PROGS) $(libdir) $(includedir) $(bindir)
@for f in X $(PUB_LIB); do \
if test $$f != X; then \
($(LT_INSTALL_LIB) $$f $(libdir)/. || exit 1); \
@@ -78,7 +78,7 @@ install: $(PUB_LIB) $(PUB_HDR) $(PROGS) $(libdir) $(includedir) $(bindir)
fi; \
fi; \
done
- @for f in X $(PROGS); do \
+ @for f in X $(PUB_PROGS); do \
if test $$f != X; then \
($(LT_INSTALL_PROG) $$f $(bindir)/. || exit 1); \
fi; \
@@ -110,7 +110,7 @@ uninstall:
@if test "X$(PUB_HDR)" != X; then \
set -x; cd $(includedir) && $(RM) $(PUB_HDR); \
fi
- @for f in X $(PROGS); do \
+ @for f in X $(PUB_PROGS); do \
if test $$f != X; then \
$(LT_UNINSTALL) $(bindir)/$$f; \
fi; \