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