mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
93071141f4
A memory allocation library with error checking. PR: 6474 Submitted by: Andrey Zakhvatov <andy@icc.surw.chel.su>
36 lines
1.0 KiB
Plaintext
36 lines
1.0 KiB
Plaintext
--- Makefile.orig Sun Jul 5 12:15:59 1998
|
|
+++ Makefile Fri Apr 2 15:26:22 1999
|
|
@@ -8,10 +8,10 @@
|
|
###########################################################################
|
|
|
|
# Define SHARED as 1 for Linux shared ELF library
|
|
-#SHARED = 1
|
|
+SHARED = 1
|
|
|
|
ifeq ($(SHARED),1)
|
|
-LIBTARGET = lib$(DIST).so.$(VERSION)
|
|
+LIBTARGET = lib$(DIST).so.$(VERMAJ)
|
|
LIBTARGETSO = lib$(DIST).so
|
|
LIBTARGETSOMAJ = $(LIBTARGETSO).$(VERMAJ)
|
|
CCSHRD = -fPIC
|
|
@@ -27,7 +27,7 @@
|
|
INSTBASEDIR = /usr/local
|
|
INSTLIBDIR = $(INSTBASEDIR)/lib
|
|
INSTINCDIR = $(INSTBASEDIR)/include
|
|
-INSTALL = install -m 644
|
|
+INSTALL = install -c -m 644
|
|
MKDIRP = install -d -m 755
|
|
|
|
###########################################################################
|
|
@@ -66,9 +66,7 @@
|
|
$(INSTALL) $(LIBTARGET) $(INSTLIBDIR)
|
|
$(INSTALL) $(LIBHEAD) $(INSTINCDIR)
|
|
ifeq ($(SHARED),1)
|
|
- ln -sf $(LIBTARGET) $(INSTLIBDIR)/$(LIBTARGETSOMAJ)
|
|
- ln -sf $(LIBTARGETSOMAJ) $(INSTLIBDIR)/$(LIBTARGETSO)
|
|
- echo "If you use GNU/Linux, remember to run ldconfig"
|
|
+ ln -sf $(LIBTARGET) $(INSTLIBDIR)/$(LIBTARGETSO)
|
|
endif
|
|
|
|
clean:
|