head 1.12; access; symbols EX_1_0_6:1.12 LMTP2NNTP_1_4_1:1.10 LMTP2NNTP_1_4_0:1.10 EX_1_0_5:1.10 LMTP2NNTP_1_3_0:1.9 LMTP2NNTP_1_3b2:1.9 LMTP2NNTP_1_3b1:1.9 LMTP2NNTP_1_3a3:1.9 LMTP2NNTP_1_3a2:1.9 LMTP2NNTP_1_3a1:1.9 EX_1_0_4:1.9 EX_1_0_3:1.9 OSSP_RC_0_7_3:1.8 OSSP_RC_0_7_2:1.8 OSSP_RC_0_7_1:1.8 OSSP_RC_ALPHA_06:1.8 OSSP_RC_EXBROKEN:1.8 LMTP2NNTP_1_2_0:1.8 LMTP2NNTP_1_2b4:1.8 LMTP2NNTP_1_2b3:1.8 LMTP2NNTP_1_2b2:1.8 LMTP2NNTP_1_2b1:1.8 LMTP2NNTP_1_2a8:1.8 LMTP2NNTP_1_2a7:1.8 EX_1_0_2:1.8 EX_1_0_1:1.7 LMTP2NNTP_1_2a6:1.6 LMTP2NNTP_1_2a5:1.6 EX_1_0_0:1.6 LMTP2NNTP_1_2a4:1.5 EX_0_9_1:1.5 LMTP2NNTP_1_2a3:1.5 EX_0_9_0:1.3; locks; strict; comment @# @; 1.12 date 2007.10.12.19.59.57; author rse; state Exp; branches; next 1.11; commitid 9SN7ivPOxnsC7lBs; 1.11 date 2006.08.10.19.49.33; author rse; state Exp; branches; next 1.10; commitid o4A6XFppdzD0PkIr; 1.10 date 2005.01.30.13.39.07; author rse; state Exp; branches; next 1.9; 1.9 date 2004.03.25.19.01.42; author rse; state Exp; branches; next 1.8; 1.8 date 2003.01.30.11.04.42; author rse; state Exp; branches; next 1.7; 1.7 date 2003.01.06.15.31.24; author rse; state Exp; branches; next 1.6; 1.6 date 2002.03.30.18.56.02; author rse; state Exp; branches; next 1.5; 1.5 date 2002.02.05.19.52.24; author rse; state Exp; branches; next 1.4; 1.4 date 2002.01.31.21.20.44; author rse; state Exp; branches; next 1.3; 1.3 date 2002.01.31.21.03.39; author rse; state Exp; branches; next 1.2; 1.2 date 2002.01.31.20.48.05; author rse; state Exp; branches; next 1.1; 1.1 date 2002.01.26.20.12.19; author rse; state Exp; branches; next ; desc @@ 1.12 log @prepare for release @ text @## ## OSSP ex - Exception Handling ## Copyright (c) 2002-2007 Ralf S. Engelschall ## Copyright (c) 2002-2007 The OSSP Project ## ## This file is part of OSSP ex, an exception handling library ## which can be found at http://www.ossp.org/pkg/lib/ex/. ## ## 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@@ datarootdir = @@datarootdir@@ 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 = libex.la LIB_OBJS = ex.lo TST_NAME = ex_test TST_OBJS = ex_test.o ts.o .SUFFIXES: .SUFFIXES: .c .o .lo all: $(LIB_NAME) $(TST_NAME) .c.o: $(CC) $(CPPFLAGS) $(CFLAGS) -c $< .c.lo: @@$(LIBTOOL) --mode=compile $(CC) $(CPPFLAGS) $(CFLAGS) -c $< $(LIB_OBJS): Makefile $(TST_OBJS): Makefile $(LIB_NAME): $(LIB_OBJS) @@$(LIBTOOL) --mode=link $(CC) -o $(LIB_NAME) $(LIB_OBJS) -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: ex.3 ex.3: ex.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="Exception Handling" \ --release="$$D" --date="OSSP ex $$V1" ex.pod | \ sed -e "s;EX_VERSION_STR;$$V2;" >ex.3 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 ex-config $(DESTDIR)$(bindir)/ $(SHTOOL) install -c -m 644 ex.h $(DESTDIR)$(includedir)/ $(SHTOOL) install -c -m 644 ex.3 $(DESTDIR)$(mandir)/man3/ @@$(LIBTOOL) --mode=install $(SHTOOL) install -c -m 644 libex.la $(DESTDIR)$(libdir)/ uninstall: @@$(LIBTOOL) --mode=uninstall $(RM) $(DESTDIR)$(libdir)/libex.la -$(RM) $(DESTDIR)$(mandir)/man3/ex.3 -$(RM) $(DESTDIR)$(includedir)/ex.h -$(RM) $(DESTDIR)$(bindir)/ex-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: -$(RM) $(LIB_NAME) $(LIB_OBJS) -$(RM) $(TST_NAME) $(TST_OBJS) -$(RM) -r .libs >/dev/null 2>&1 || $(TRUE) -$(RM) *.o *.lo distclean: clean -$(RM) config.log config.status config.cache -$(RM) Makefile config.h ex-config -$(RM) libtool realclean: distclean -$(RM) ex.3 -$(RM) configure config.h.in -$(RM) shtool -$(RM) ltmain.sh libtool.m4 config.guess config.sub @ 1.11 log @cleanup source tree @ text @d3 2 a4 2 ## Copyright (c) 2002-2006 Ralf S. Engelschall ## Copyright (c) 2002-2006 The OSSP Project @ 1.10 log @Adjusted copyright messages to include new year 2005. @ text @d3 2 a4 3 ## Copyright (c) 2002-2005 Ralf S. Engelschall ## Copyright (c) 2002-2005 The OSSP Project ## Copyright (c) 2002-2005 Cable & Wireless d35 1 @ 1.9 log @bump and adjust copyright @ text @d3 3 a5 3 ## Copyright (c) 2002-2004 Ralf S. Engelschall ## Copyright (c) 2002-2004 The OSSP Project ## Copyright (c) 2002-2004 Cable & Wireless @ 1.8 log @final polishing @ text @d3 3 a5 3 ## Copyright (c) 2002-2003 Ralf S. Engelschall ## Copyright (c) 2002-2003 The OSSP Project ## Copyright (c) 2002-2003 Cable & Wireless Germany @ 1.7 log @- consistently use "Exception Handling" - strip trailing whitespaces - adjust copyright for new year 2003 - consistently use OSSP ASCII-art @ text @d5 1 a5 1 ## Copyright (c) 2002-2003 Cable & Wireless Deutschland @ 1.6 log @bump version and fix URLs @ text @d2 4 a5 4 ## OSSP ex - Exception Handling Library ## Copyright (c) 2002 Ralf S. Engelschall ## Copyright (c) 2002 The OSSP Project ## Copyright (c) 2002 Cable & Wireless Deutschland @ 1.5 log @Force new object file generation if the Makefile changed. PR: Submitted by: Reviewed by: Approved by: Obtained from: @ text @d8 1 a8 1 ## which can be found at http://www.ossp.org/pkg/ex/. @ 1.4 log @fix licenses @ text @d70 3 @ 1.3 log @final polishing for release @ text @d10 4 a13 4 ## This program is free software; you can redistribute it and/or ## modify it under the terms of the GNU General Public License ## as published by the Free Software Foundation; either version ## 2.0 of the License, or (at your option) any later version. d15 12 a26 9 ## This program is distributed in the hope that it will be useful, ## but WITHOUT ANY WARRANTY; without even the implied warranty of ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ## General Public License for more details. ## ## You should have received a copy of the GNU General Public License ## along with this file; if not, write to the Free Software ## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 ## USA, or contact the OSSP project . @ 1.2 log @add ex.3 generation @ text @d74 1 d92 1 a92 1 $(SHTOOL) mkdir -f -p -m 755 $(DESTDIR)$(mandir) d95 1 a96 1 $(SHTOOL) install -c -m 644 ex.3 $(DESTDIR)$(mandir)/man3/ d99 1 a100 1 @@$(LIBTOOL) --mode=uninstall $(RM) $(DESTDIR)$(libdir)/libex.la d103 1 @ 1.1 log @switch to our standard build environment @ text @d48 1 d74 9 d91 1 d95 1 d98 1 d102 1 d120 1 @