summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Lane1999-01-17 00:19:33 +0000
committerTom Lane1999-01-17 00:19:33 +0000
commit575c0edaef1ee749f44447d96ec227d25bd61d5d (patch)
treecefc4103a677082e33a335f932f0990b32530a3e
parent3be6c6eb73922fb872a6251cb45cb89d8822744f (diff)
Re-insert %.sl rule into Makefile.hpux ... seems it is not
quite as unused as I thought ... how embarrassing.
-rw-r--r--src/makefiles/Makefile.hpux5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/makefiles/Makefile.hpux b/src/makefiles/Makefile.hpux
index 022c071001c..392ea1a5dff 100644
--- a/src/makefiles/Makefile.hpux
+++ b/src/makefiles/Makefile.hpux
@@ -24,3 +24,8 @@ endif
# to catch null pointer dereferences, and specify -E to make all symbols
# visible to dynamically linked shared libraries.
LDFLAGS+= -Wl,+b -Wl,$(LIBDIR) -Wl,-z -Wl,-E
+
+# Rule for building shared libs (currently used only for regression test
+# shlib ... should go away, since this is not really enough knowledge)
+%.sl: %.o
+ $(LD) -b -o $@ $<