Deleted Added
full compact
mkdep (276788) mkdep (285275)
1#!/bin/sh -
2#
3# Copyright (c) 1994, 1996
4# The Regents of the University of California. All rights reserved.
5#
6# Redistribution and use in source and binary forms are permitted
7# provided that this notice is preserved and that due credit is given
8# to the University of California at Berkeley. The name of the University
9# may not be used to endorse or promote products derived from this
10# software without specific prior written permission. This software
11# is provided ``as is'' without express or implied warranty.
12#
13# @(#)mkdep.sh 5.11 (Berkeley) 5/5/88
14#
15
1#!/bin/sh -
2#
3# Copyright (c) 1994, 1996
4# The Regents of the University of California. All rights reserved.
5#
6# Redistribution and use in source and binary forms are permitted
7# provided that this notice is preserved and that due credit is given
8# to the University of California at Berkeley. The name of the University
9# may not be used to endorse or promote products derived from this
10# software without specific prior written permission. This software
11# is provided ``as is'' without express or implied warranty.
12#
13# @(#)mkdep.sh 5.11 (Berkeley) 5/5/88
14#
15
16PATH=/bin:/usr/bin:/usr/ucb:/usr/local:/usr/local/bin
17export PATH
18
19MAKE=Makefile # default makefile name is "Makefile"
20CC=cc # default C compiler is "cc"
21DEPENDENCY_CFLAG=-M # default dependency-generation flag is -M
22
23while :
24 do case "$1" in
25 # -c allows you to specify the C compiler
26 -c)

--- 89 unchanged lines hidden ---
16MAKE=Makefile # default makefile name is "Makefile"
17CC=cc # default C compiler is "cc"
18DEPENDENCY_CFLAG=-M # default dependency-generation flag is -M
19
20while :
21 do case "$1" in
22 # -c allows you to specify the C compiler
23 -c)

--- 89 unchanged lines hidden ---