diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 1999-01-17 00:18:59 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 1999-01-17 00:18:59 +0000 |
commit | 46ced3429bfb0d6ee627cd4589a690d3c3d8bcf5 (patch) | |
tree | 1ba941354b00a0824ecc36778e92b60b5dd4027a /src | |
parent | d8b96ade8165c37738ffc3e81607140cc9adc506 (diff) | |
download | postgresql-46ced3429bfb0d6ee627cd4589a690d3c3d8bcf5.tar.gz postgresql-46ced3429bfb0d6ee627cd4589a690d3c3d8bcf5.zip |
Re-insert %.sl rule into Makefile.hpux ... seems it is not
quite as unused as I thought ... how embarrassing.
Diffstat (limited to 'src')
-rw-r--r-- | src/makefiles/Makefile.hpux | 5 |
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 $@ $< |