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 christos 22 1.1 christos while : 23 1.1 christos do case "$1" in 24 1.1 christos # -c allows you to specify the C compiler 25 1.1 christos -c) 26 1.1 christos CC=$2 27 1.1 christos shift; shift ;; 28 1.1 christos 29 1.1 christos # -f allows you to select a makefile name 30 1.1 christos -f) 31 1.1 christos MAKE=$2 32 1.1 christos shift; shift ;; 33 1.1 christos 34 1.1 christos # the -p flag produces "program: program.c" style dependencies 35 1.1 christos # so .o's don't get produced 36 1.1 christos -p) 37 1.1 christos SED='s;\.o;;' 38 1.1 christos shift ;; 39 1.1 christos *) 40 1.1 christos break ;; 41 1.1 christos esac 42 1.1 christos done 43 1.1 christos 44 1.1 christos if [ $# = 0 ] ; then 45 1.1 christos echo 'usage: mkdep [-p] [-c cc] [-f makefile] [flags] file ...' 46 1.1 christos exit 1 47 1.1 christos fi 48 1.1 christos 49 1.1 christos if [ ! -w $MAKE ]; then 50 1.1 christos echo "mkdep: no writeable file \"$MAKE\"" 51 1.1 christos exit 1 52 1.1 christos fi 53 1.1 christos 54 1.1 christos TMP=/tmp/mkdep$$ 55 1.1 christos 56 1.1 christos trap 'rm -f $TMP ; exit 1' 1 2 3 13 15 57 1.1 christos 58 1.1 christos cp $MAKE ${MAKE}.bak 59 1.1 christos 60 1.1 christos sed -e '/DO NOT DELETE THIS LINE/,$d' < $MAKE > $TMP 61 1.1 christos 62 1.1 christos cat << _EOF_ >> $TMP 63 1.1 christos # DO NOT DELETE THIS LINE -- mkdep uses it. 64 1.1 christos # DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY. 65 1.1 christos 66 1.1 christos _EOF_ 67 1.1 christos 68 1.1 christos # If your compiler doesn't have -M, add it. If you can't, the next two 69 1.1 christos # lines will try and replace the "cc -M". The real problem is that this 70 1.1 christos # hack can't deal with anything that requires a search path, and doesn't 71 1.1 christos # even try for anything using bracket (<>) syntax. 72 1.1 christos # 73 1.1 christos # egrep '^#include[ ]*".*"' /dev/null $* | 74 1.1 christos # sed -e 's/:[^"]*"\([^"]*\)".*/: \1/' -e 's/\.c/.o/' | 75 1.1 christos 76 1.1 christos # XXX this doesn't work with things like "-DDECLWAITSTATUS=union\ wait" 77 1.1 christos $CC -M $* | 78 1.1 christos sed " 79 1.1 christos s; \./; ;g 80 1.1 christos $SED" | 81 1.1 christos awk '{ 82 1.1 christos if ($1 != prev) { 83 1.1 christos if (rec != "") 84 1.1 christos print rec; 85 1.1 christos rec = $0; 86 1.1 christos prev = $1; 87 1.1 christos } 88 1.1 christos else { 89 1.1 christos if (length(rec $2) > 78) { 90 1.1 christos print rec; 91 1.1 christos rec = $0; 92 1.1 christos } 93 1.1 christos else 94 1.1 christos rec = rec " " $2 95 1.1 christos } 96 1.1 christos } 97 1.1 christos END { 98 1.1 christos print rec 99 1.1 christos }' >> $TMP 100 1.1 christos 101 1.1 christos cat << _EOF_ >> $TMP 102 1.1 christos 103 1.1 christos # IF YOU PUT ANYTHING HERE IT WILL GO AWAY 104 1.1 christos _EOF_ 105 1.1 christos 106 1.1 christos # copy to preserve permissions 107 1.1 christos cp $TMP $MAKE 108 1.1 christos rm -f ${MAKE}.bak $TMP 109 1.1 christos exit 0 110