#!/bin/sh############################################################################### Copyright (c) 1998,2000 Free Software Foundation, Inc. ## ## Permission is hereby granted, free of charge, to any person obtaining a ## copy of this software and associated documentation files (the "Software"), ## to deal in the Software without restriction, including without limitation ## the rights to use, copy, modify, merge, publish, distribute, distribute ## with modifications, sublicense, and/or sell copies of the Software, and to ## permit persons to whom the Software is furnished to do so, subject to the ## following conditions: ## ## The above copyright notice and this permission notice shall be included in ## all copies or substantial portions of the Software. ## ## THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR ## IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, ## FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL ## THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER ## LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING ## FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER ## DEALINGS IN THE SOFTWARE. ## ## Except as contained in this notice, the name(s) of the above copyright ## holders shall not be used in advertising or otherwise to promote the sale, ## use or other dealings in this Software without prior written ## authorization. ################################################################################# Author: Thomas E. Dickey 1996,1997,2000## $Id: makellib,v 1.8 2000/10/28 21:37:10 tom Exp $# System-dependent wrapper for 'lint' that creates a lint-library via the# following method (XXX is the name of the library):# a. If the file llib-lXXX doesn't exist, create it using the make-rule# b. Process llib-lXXX with the system's lint utility, making# llib-lXXX.ln# c. Install llib-lXXX.ln in the lib directory.## Using the intermediate file llib-lXXX bypasses a weakness of lint (passing# through warning messages from the original source-files).## There are two drawbacks to this approach:# a. On a few systems, you'll have to manually-edit the llib-lXXX file# to get a usable lint-library (not all C-preprocessors work well).# b. The system's lint utility won't recognize -lXXX as a lint-library# (Use tdlint as a wrapper; it's designed for this).## Parameters:# $1 = library name# $* = C-preprocessor options#ARCH=`uname -s`if test "x$ARCH" = "xSunOS" ; thencase `uname -r` in5.*) ARCH=Solaris;;esacfi#DST="$HOME/lib/$ARCH/lint"OPT=""LLIB=""llib=""#while test $# != 0docase $1 in-L*)DST="$DST `echo $1|sed -e 's/^-L//'`";;-*)OPT="$OPT $1";;*)if test -z "$LLIB"thenLLIB=$1elsellib=llib-l$1fi;;esacshiftdoneif test -z "$LLIB"thenecho '? no library name specified'exit 1elif test -z "$llib"thenllib="llib-l$LLIB"fiif test ! -f $llib ; thenif ( make $llib )then:elseexit 1fifirm -f $llib.ln $llib.cTARGET=$LLIBcase "$ARCH" inAIX)CREATE="-uvxo$LLIB -Nn4000"TARGET=$llib.cln $llib $TARGET;;Solaris)CREATE="-C$llib"TARGET=$llib.cln $llib $TARGET;;FreeBSD)CREATE="-g -z -C$LLIB"TARGET=$llib.cln $llib $TARGET;;CLIX)CREATE="-DLINTLIBRARY -vxo$LLIB"TARGET=$llib.cln $llib $TARGET;;IRIX*)CREATE="-DLINTLIBRARY -vxyo$LLIB"TARGET=$llib.cln $llib $TARGET;;UNIX_SV)CREATE="-DLINTLIBRARY -vxyo$LLIB"TARGET=$llib.cln $llib $TARGET;;*)echo "Sorry. I do not know how to build a lint-library for $ARCH"exit 1esacecho OPT "$OPT"echo TARGET "$TARGET"echo LIBNAME "$llib"if ( lint $CREATE $OPT $TARGET )thenif test -f $llib.lnthenfor p in $HOME/lib $HOME/lib/$ARCH $HOME/lib/$ARCH/lintdoif test ! -d $pthenmkdir $pfidonefor p in $DSTdocp $llib.ln $p/donerm -f $llib.lnfifiif test "x$TARGET" = "x$llib.c" ; thenrm -f $TARGETfi