head 1.5;
access;
symbols
SIO_0_9_3:1.5
SIO_0_9_2:1.4
SIO_0_9_1:1.4
SIO_0_9_0:1.4;
locks; strict;
comment @# @;
1.5
date 2005.10.03.09.06.11; author rse; state Exp;
branches;
next 1.4;
1.4
date 2003.01.20.19.13.39; author mlelstv; state Exp;
branches;
next 1.3;
1.3
date 2003.01.06.19.04.56; author rse; state Exp;
branches;
next 1.2;
1.2
date 2002.12.18.15.54.15; author mlelstv; state Exp;
branches;
next 1.1;
1.1
date 2002.12.18.14.58.29; author mlelstv; state Exp;
branches;
next ;
desc
@@
1.5
log
@adjust copyright messages
@
text
@##
## OSSP sio - Stream I/O
## Copyright (c) 2002-2005 Cable & Wireless
## Copyright (c) 2002-2005 The OSSP Project
## Copyright (c) 2002-2005 Ralf S. Engelschall
##
## This file is part of OSSP sio, a layered stream I/O library
## which can be found at http://www.ossp.org/pkg/lib/sio/.
##
## Permission to use, copy, modify, and distribute this software for
## any purpose with or without fee is hereby granted, provided that
## the above copyright notice and this permission notice appear in all
## copies.
##
## THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
## WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
## MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
## IN NO EVENT SHALL THE AUTHORS AND COPYRIGHT HOLDERS AND THEIR
## CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
## SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
## LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
## USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
## ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
## OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
## OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
## SUCH DAMAGE.
##
## Makefile.in: make(1) build procedure
##
@@SET_MAKE@@
DESTDIR =
prefix = @@prefix@@
exec_prefix = @@exec_prefix@@
bindir = @@bindir@@
libdir = @@libdir@@
includedir = @@includedir@@
mandir = @@mandir@@
CC = @@CC@@
CPPFLAGS = @@CPPFLAGS@@
CFLAGS = @@DEFS@@ @@CFLAGS@@
LDFLAGS = @@LDFLAGS@@
LIBS = @@LIBS@@
RM = rm -f
RMDIR = rmdir
SHTOOL = ./shtool
LIBTOOL = ./libtool
TRUE = true
POD2MAN = pod2man
LIB_NAME = libsio.la
LIB_OBJS = sio.lo sio_bio.lo sio_buffer.lo sio_hello.lo sio_null.lo sio_hole.lo sio_fd.lo sio_sa.lo sio_sillymux.lo sio_sio.lo sio_zlib.lo
LIB_DEPS = @@LIB_DEPS@@
MAN_NAME = sio.3
TST_NAME = sio_test
TST_OBJS = sio_test.o ts.o
SUBDIRS = @@SUBDIR_AL@@ @@SUBDIR_SA@@
.SUFFIXES:
.SUFFIXES: .c .o .lo
all: _SUBDIRS_all $(LIB_NAME) $(TST_NAME) $(MAN_NAME)
.c.o:
$(CC) $(CPPFLAGS) $(CFLAGS) -c $<
.c.lo:
@@$(LIBTOOL) --mode=compile $(CC) $(CPPFLAGS) $(CFLAGS) -c $<
# convinience rule for calling _SUBDIRS with various make targets
_SUBDIRS_all _SUBDIRS_check _SUBDIRS_install _SUBDIRS_uninstall _SUBDIRS_clean \
_SUBDIRS_distclean _SUBDIRS_realclean _SUBDIRS_depend:
@@$(MAKE) $(MFLAGS) \
_SUBDIRS_TARGET=`echo $@@ | sed -e 's/^_SUBDIRS_//'` \
_SUBDIRS_STEPDOWN
# the work horse rule which steps down to the subdirs in a loop
_SUBDIRS_STEPDOWN:
@@for subdir in $(SUBDIRS); do \
test ! -f "$$subdir/Makefile" && continue; \
echo "===> $(_SUBDIRS_DP)$$subdir ($(_SUBDIRS_TARGET))"; \
(cd $$subdir; \
$(MAKE) $(MFLAGS) \
_SUBDIRS_DP="$(_SUBDIRS_DP)$$subdir/" \
$(_SUBDIRS_TARGET) || exit 1) || exit 1; \
echo "<=== $(_SUBDIRS_DP)$$subdir"; \
done
$(LIB_NAME): $(LIB_OBJS)
@@$(LIBTOOL) --mode=link $(CC) -o $(LIB_NAME) $(LIB_OBJS) $(LIB_DEPS) -rpath $(libdir) \
-version-info `$(SHTOOL) version -l txt -d libtool VERSION`
$(TST_NAME): $(TST_OBJS) $(LIB_NAME)
@@$(LIBTOOL) --mode=link $(CC) $(LDFLAGS) -o $(TST_NAME) $(TST_OBJS) $(LIB_NAME) $(LIBS)
man: $(MAN_NAME)
$(MAN_NAME): sio.pod
V1=`$(SHTOOL) version -l txt -d short VERSION`; \
V2=`$(SHTOOL) version -l txt -d long VERSION`; \
D=`$(SHTOOL) version -l txt -d long VERSION | sed -e 's;.*(;;' -e 's;).*;;'`; \
$(POD2MAN) --quotes=none \
--section=3 --center="Stream I/O" \
--release="$$D" --date="OSSP sio $$V1" sio.pod | \
sed -e "s;SIO_VERSION_STR;$$V2;" >$(MAN_NAME)
check: $(TST_NAME)
@@$(LIBTOOL) --mode=execute ./$(TST_NAME)
install:
$(SHTOOL) mkdir -f -p -m 755 $(DESTDIR)$(prefix)
$(SHTOOL) mkdir -f -p -m 755 $(DESTDIR)$(bindir)
$(SHTOOL) mkdir -f -p -m 755 $(DESTDIR)$(includedir)
$(SHTOOL) mkdir -f -p -m 755 $(DESTDIR)$(libdir)
$(SHTOOL) mkdir -f -p -m 755 $(DESTDIR)$(mandir)/man3
$(SHTOOL) install -c -m 755 sio-config $(DESTDIR)$(bindir)/
$(SHTOOL) install -c -m 644 sio.h $(DESTDIR)$(includedir)/
$(SHTOOL) install -c -m 644 $(MAN_NAME) $(DESTDIR)$(mandir)/man3/
@@$(LIBTOOL) --mode=install $(SHTOOL) install -c -m 644 libsio.la $(DESTDIR)$(libdir)/
uninstall:
@@$(LIBTOOL) --mode=uninstall $(RM) $(DESTDIR)$(libdir)/libsio.la
-$(RM) $(DESTDIR)$(mandir)/man3/$(MAN_NAME)
-$(RM) $(DESTDIR)$(includedir)/sio.h
-$(RM) $(DESTDIR)$(bindir)/sio-config
-$(RMDIR) $(DESTDIR)$(mandir)/man3 >/dev/null 2>&1 || $(TRUE)
-$(RMDIR) $(DESTDIR)$(mandir) >/dev/null 2>&1 || $(TRUE)
-$(RMDIR) $(DESTDIR)$(libdir) >/dev/null 2>&1 || $(TRUE)
-$(RMDIR) $(DESTDIR)$(includedir) >/dev/null 2>&1 || $(TRUE)
-$(RMDIR) $(DESTDIR)$(bindir) >/dev/null 2>&1 || $(TRUE)
-$(RMDIR) $(DESTDIR)$(prefix) >/dev/null 2>&1 || $(TRUE)
clean:
@@$(MAKE) $(MFLAGS) _SUBDIRS_clean
-$(RM) $(LIB_NAME) $(LIB_OBJS)
-$(RM) $(TST_NAME) $(TST_OBJS)
-$(RM) -r .libs >/dev/null 2>&1 || $(TRUE)
-$(RM) *.o *.lo
distclean: clean
@@$(MAKE) $(MFLAGS) _SUBDIRS_distclean
-$(RM) config.log config.status config.cache
-$(RM) Makefile config.h sio-config
-$(RM) libtool
realclean: distclean
@@$(MAKE) $(MFLAGS) _SUBDIRS_realclean
-$(RM) $(MAN_NAME)
-$(RM) configure config.h.in
-$(RM) shtool
-$(RM) ltmain.sh libtool.m4 config.guess config.sub
@
1.4
log
@test suite (still incomplete)
@
text
@d3 3
a5 3
## Copyright (c) 2002-2003 Cable & Wireless Deutschland
## Copyright (c) 2002-2003 The OSSP Project
## Copyright (c) 2002-2003 Ralf S. Engelschall
@
1.3
log
@- consistently use standard OSSP copyright message everywhere
- strip trailing whitespaces
@
text
@d54 1
a54 1
LIB_OBJS = sio.lo sio_bio.lo sio_buffer.lo sio_hello.lo sio_null.lo sio_sa.lo sio_sillymux.lo sio_sio.lo sio_zlib.lo
@
1.2
log
@fix typo
PR:
Submitted by:
Reviewed by:
Approved by:
Obtained from:
@
text
@d3 3
a5 4
## Copyright (c) 2002 Ralf S. Engelschall
## Copyright (c) 2002 The OSSP Project
## Copyright (c) 2002 Cable & Wireless Deutschland
## Copyright (c) 2002 Michael van Elst
d7 2
a8 3
## This file is part of OSSP sio, an abstract data type of
## a pair of half-duplex data pipes which can be found at
## http://www.ossp.org/pkg/lib/sio/.
@
1.1
log
@snapshot
PR:
Submitted by:
Reviewed by:
Approved by:
Obtained from:
@
text
@d69 1
a69 1
all: _SUBDIRS_all $(LIB_NAME) $(TST_NAME) ($MAN_NAME)
@