libixp

git clone git://oldgit.suckless.org/libixp/
Log | Files | Refs | LICENSE

commit d173ae9de29a239c7240ac145ca24654994728ca
parent 9494a601146f67b8a6e4c9a0622040c462a6669f
Author: Kris Maglione <jg@suckless.org>
Date:   Tue, 17 Apr 2007 18:16:48 -0400

Don't use ranlib.

Diffstat:
config.mk | 5+++--
libixp/README | 4++--
mk/lib.mk | 1-
3 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/config.mk b/config.mk @@ -21,11 +21,12 @@ CC = cc -c # Linker (Under normal circumstances, this should *not* be 'ld') LD = cc # Other -AR = ar cr -RANLIB = ranlib +AR = ar crs +#AR = sh -c 'ar cr "$$@" && ranlib "$$@"' # Solaris #CFLAGS = -fast ${INCS} -DVERSION=\"${VERSION}\" #LDFLAGS = ${LIBS} -R${PREFIX}/lib #LDFLAGS += -lsocket -lnsl #CFLAGS += -xtarget=ultra +#FCALL_H_VERSION=.nounion diff --git a/libixp/README b/libixp/README @@ -1,6 +1,6 @@ libixp - simple 9P client-/server-library -========================================= -libixp is an extremly simple 9P stand-alone library. +=============================== +libixp is an extremly simple, stand-alone 9P library. Installation diff --git a/mk/lib.mk b/mk/lib.mk @@ -20,6 +20,5 @@ printinstall: ${LIB}: ${OFILES} @echo AR $@ @${AR} $@ ${OFILES} - @${RANLIB} $@ include ${ROOT}/mk/common.mk