Home | History | Annotate | Line # | Download | only in dist
mkdep revision 1.1.1.2
      1      1.1  christos #!/bin/sh -
      2      1.1  christos #
      3      1.1  christos # Copyright (c) 1994, 1996
      4      1.1  christos #	The Regents of the University of California.  All rights reserved.
      5      1.1  christos #
      6      1.1  christos # Redistribution and use in source and binary forms are permitted
      7      1.1  christos # provided that this notice is preserved and that due credit is given
      8      1.1  christos # to the University of California at Berkeley. The name of the University
      9      1.1  christos # may not be used to endorse or promote products derived from this
     10      1.1  christos # software without specific prior written permission. This software
     11      1.1  christos # is provided ``as is'' without express or implied warranty.
     12      1.1  christos #
     13      1.1  christos #	@(#)mkdep.sh	5.11 (Berkeley) 5/5/88
     14      1.1  christos #
     15      1.1  christos 
     16      1.1  christos PATH=/bin:/usr/bin:/usr/ucb:/usr/local:/usr/local/bin
     17      1.1  christos export PATH
     18      1.1  christos 
     19      1.1  christos MAKE=Makefile			# default makefile name is "Makefile"
     20      1.1  christos CC=cc				# default C compiler is "cc"
     21  1.1.1.2  christos DEPENDENCY_CFLAG=-M		# default dependency-generation flag is -M
     22      1.1  christos 
     23      1.1  christos while :
     24      1.1  christos 	do case "$1" in
     25      1.1  christos 		# -c allows you to specify the C compiler
     26      1.1  christos 		-c)
     27      1.1  christos 			CC=$2
     28      1.1  christos 			shift; shift ;;
     29      1.1  christos 
     30      1.1  christos 		# -f allows you to select a makefile name
     31      1.1  christos 		-f)
     32      1.1  christos 			MAKE=$2
     33      1.1  christos 			shift; shift ;;
     34      1.1  christos 
     35  1.1.1.2  christos 		# -m allows you to specify the dependency-generation flag
     36  1.1.1.2  christos 		-m)
     37  1.1.1.2  christos 			DEPENDENCY_CFLAG=$2
     38  1.1.1.2  christos 			shift; shift ;;
     39  1.1.1.2  christos 
     40      1.1  christos 		# the -p flag produces "program: program.c" style dependencies
     41      1.1  christos 		# so .o's don't get produced
     42      1.1  christos 		-p)
     43      1.1  christos 			SED='s;\.o;;'
     44      1.1  christos 			shift ;;
     45      1.1  christos 		*)
     46      1.1  christos 			break ;;
     47      1.1  christos 	esac
     48      1.1  christos done
     49      1.1  christos 
     50      1.1  christos if [ $# = 0 ] ; then
     51  1.1.1.2  christos 	echo 'usage: mkdep [-p] [-c cc] [-f makefile] [-m dependency-cflag] [flags] file ...'
     52      1.1  christos 	exit 1
     53      1.1  christos fi
     54      1.1  christos 
     55      1.1  christos if [ ! -w $MAKE ]; then
     56      1.1  christos 	echo "mkdep: no writeable file \"$MAKE\""
     57      1.1  christos 	exit 1
     58      1.1  christos fi
     59      1.1  christos 
     60      1.1  christos TMP=/tmp/mkdep$$
     61      1.1  christos 
     62      1.1  christos trap 'rm -f $TMP ; exit 1' 1 2 3 13 15
     63      1.1  christos 
     64      1.1  christos cp $MAKE ${MAKE}.bak
     65      1.1  christos 
     66      1.1  christos sed -e '/DO NOT DELETE THIS LINE/,$d' < $MAKE > $TMP
     67      1.1  christos 
     68      1.1  christos cat << _EOF_ >> $TMP
     69      1.1  christos # DO NOT DELETE THIS LINE -- mkdep uses it.
     70      1.1  christos # DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY.
     71      1.1  christos 
     72      1.1  christos _EOF_
     73      1.1  christos 
     74      1.1  christos # If your compiler doesn't have -M, add it.  If you can't, the next two
     75      1.1  christos # lines will try and replace the "cc -M".  The real problem is that this
     76      1.1  christos # hack can't deal with anything that requires a search path, and doesn't
     77      1.1  christos # even try for anything using bracket (<>) syntax.
     78      1.1  christos #
     79      1.1  christos # egrep '^#include[ 	]*".*"' /dev/null $* |
     80      1.1  christos # sed -e 's/:[^"]*"\([^"]*\)".*/: \1/' -e 's/\.c/.o/' |
     81      1.1  christos 
     82      1.1  christos # XXX this doesn't work with things like "-DDECLWAITSTATUS=union\ wait"
     83  1.1.1.2  christos $CC $DEPENDENCY_CFLAG $* |
     84      1.1  christos sed "
     85      1.1  christos 	s; \./; ;g
     86      1.1  christos 	$SED" |
     87      1.1  christos awk '{
     88      1.1  christos 	if ($1 != prev) {
     89      1.1  christos 		if (rec != "")
     90      1.1  christos 			print rec;
     91      1.1  christos 		rec = $0;
     92      1.1  christos 		prev = $1;
     93      1.1  christos 	}
     94      1.1  christos 	else {
     95      1.1  christos 		if (length(rec $2) > 78) {
     96      1.1  christos 			print rec;
     97      1.1  christos 			rec = $0;
     98      1.1  christos 		}
     99      1.1  christos 		else
    100      1.1  christos 			rec = rec " " $2
    101      1.1  christos 	}
    102      1.1  christos }
    103      1.1  christos END {
    104      1.1  christos 	print rec
    105      1.1  christos }' >> $TMP
    106      1.1  christos 
    107      1.1  christos cat << _EOF_ >> $TMP
    108      1.1  christos 
    109      1.1  christos # IF YOU PUT ANYTHING HERE IT WILL GO AWAY
    110      1.1  christos _EOF_
    111      1.1  christos 
    112      1.1  christos # copy to preserve permissions
    113      1.1  christos cp $TMP $MAKE
    114      1.1  christos rm -f ${MAKE}.bak $TMP
    115      1.1  christos exit 0
    116