summaryrefslogtreecommitdiff
path: root/build
diff options
context:
space:
mode:
authorSascha Schumann <sas@php.net>2000-05-01 02:57:24 +0000
committerSascha Schumann <sas@php.net>2000-05-01 02:57:24 +0000
commite2905f1b5cd26a0be0260b040e8003306b717f7b (patch)
treefd730ddf54b9885c2849ef86b4a5013370d48aa1 /build
parenta481fddfb363d13ed28036bf94974c968197ca2b (diff)
downloadphp-git-e2905f1b5cd26a0be0260b040e8003306b717f7b.tar.gz
Get rid of old cruft. Broke build on Irix.
Diffstat (limited to 'build')
-rw-r--r--build/library.mk15
1 files changed, 0 insertions, 15 deletions
diff --git a/build/library.mk b/build/library.mk
index 3d42218aca..8950e944b2 100644
--- a/build/library.mk
+++ b/build/library.mk
@@ -28,18 +28,3 @@ LTLIBRARY_OBJECTS = $(LTLIBRARY_SOURCES:.c=.lo)
$(LTLIBRARY_NAME): $(LTLIBRARY_OBJECTS) $(LTLIBRARY_DEPENDENCIES)
$(LINK) $(LTLIBRARY_LDFLAGS) $(LTLIBRARY_OBJECTS) $(LTLIBRARY_LIBADD)
-
-$(LTLIBRARY_SHARED_NAME): $(LTLIBRARY_OBJECTS) $(LTLIBRARY_DEPENDENCIES)
- @test -d $(phplibdir) || $(mkinstalldirs) $(phplibdir)
- $(LINK) -avoid-version -module -rpath $(phplibdir) $(LTLIBRARY_LDFLAGS) $(LTLIBRARY_OBJECTS) $(LTLIBRARY_SHARED_LIBADD)
- $(SHLIBTOOL) --mode=install cp $@ $(phplibdir)
-
-shared:
- @if test -z '$(LTLIBRARY_SHARED_NAME)'; then \
- echo "LTLIBRARY_SHARED_NAME is empty. Double check your Makefile.in"; \
- fi
- @if test '$(SHLIBTOOL)' != '$(LIBTOOL)'; then \
- $(MAKE) 'LIBTOOL=$(SHLIBTOOL)' $(LTLIBRARY_SHARED_NAME); \
- else \
- $(MAKE) $(LTLIBRARY_SHARED_NAME); \
- fi