1 1.1 christos #!/bin/sh - 2 1.1 christos # 3 1.1 christos # Copyright (c) 1987 Regents of the University of California. 4 1.1 christos # 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 the above copyright notice and this paragraph are 8 1.1 christos # duplicated in all such forms and that any documentation, 9 1.1 christos # advertising materials, and other materials related to such 10 1.1 christos # distribution and use acknowledge that the software was developed 11 1.1 christos # by the University of California, Berkeley. The name of the 12 1.1 christos # University may not be used to endorse or promote products derived 13 1.1 christos # from this software without specific prior written permission. 14 1.1 christos # THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR 15 1.1 christos # IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED 16 1.1 christos # WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. 17 1.1 christos # 18 1.1 christos # @(#)mkdep.sh 5.12 (Berkeley) 6/30/88 19 1.1 christos # 20 1.1 christos 21 1.1 christos MAKE=Makefile # default makefile name is "Makefile" 22 1.1 christos 23 1.1 christos while : 24 1.1 christos do case "$1" in 25 1.1 christos # -f allows you to select a makefile name 26 1.1 christos -f) 27 1.1 christos MAKE=$2 28 1.1 christos shift; shift ;; 29 1.1 christos 30 1.1 christos # the -p flag produces "program: program.c" style dependencies 31 1.1 christos # so .o's don't get produced 32 1.1 christos -p) 33 1.1 christos SED='s;\.o;;' 34 1.1 christos shift ;; 35 1.1 christos *) 36 1.1 christos break ;; 37 1.1 christos esac 38 1.1 christos done 39 1.1 christos 40 1.1 christos if [ $# = 0 ] ; then 41 1.1 christos echo 'usage: mkdep [-p] [-f makefile] [flags] file ...' 42 1.1 christos exit 1 43 1.1 christos fi 44 1.1 christos 45 1.1 christos if [ ! -w $MAKE ]; then 46 1.1 christos echo "mkdep: no writeable file \"$MAKE\"" 47 1.1 christos exit 1 48 1.1 christos fi 49 1.1 christos 50 1.1 christos TMP=/tmp/mkdep$$ 51 1.1 christos 52 1.1 christos trap 'rm -f $TMP ; exit 1' 1 2 3 13 15 53 1.1 christos 54 1.1 christos cp $MAKE ${MAKE}.bak 55 1.1 christos 56 1.1 christos sed -e '/DO NOT DELETE THIS LINE/,$d' < $MAKE > $TMP 57 1.1 christos 58 1.1 christos cat << _EOF_ >> $TMP 59 1.1 christos # DO NOT DELETE THIS LINE -- mkdep uses it. 60 1.1 christos # DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY. 61 1.1 christos 62 1.1 christos _EOF_ 63 1.1 christos 64 1.1 christos # If your compiler doesn't have -M, add it. If you can't, the next two 65 1.1 christos # lines will try and replace the "cc -M". The real problem is that this 66 1.1 christos # hack can't deal with anything that requires a search path, and doesn't 67 1.1 christos # even try for anything using bracket (<>) syntax. 68 1.1 christos # 69 1.1 christos # egrep '^#include[ ]*".*"' /dev/null $* | 70 1.1 christos # sed -e 's/:[^"]*"\([^"]*\)".*/: \1/' -e 's/\.c/.o/' | 71 1.1 christos 72 1.1 christos gcc -MM $* | 73 1.1 christos sed " 74 1.1 christos s; \./; ;g 75 1.1 christos $SED" >> $TMP 76 1.1 christos 77 1.1 christos cat << _EOF_ >> $TMP 78 1.1 christos 79 1.1 christos # IF YOU PUT ANYTHING HERE IT WILL GO AWAY 80 1.1 christos _EOF_ 81 1.1 christos 82 1.1 christos # copy to preserve permissions 83 1.1 christos cp $TMP $MAKE 84 1.1 christos rm -f ${MAKE}.bak $TMP 85 1.1 christos exit 0 86 1.1 christos 87 1.1 christos 88