#!/bin/sh
#ident "@(#)mkdep-hpux.sh 1.1 02/10/10 "
###########################################################################
# Copyright 2002 by J. Schilling
###########################################################################
#
# Create dependency list with the HP-UX bundled cc
#
###########################################################################
#
# This script will probably not work correctly with a list of C-files
# but as we don't need it with 'smake' or 'gmake' it seems to be sufficient.
#
# Due to a design bug in the compiler interface we cannot tell the compiler
# to output the list on stdout, -Wp,-M- does not work. As the default
# output is on stderr and the output is even completely confused with
# error messages and warnings, we cannot just grep away the warnings
# like we do on SCO unix.
#
###########################################################################
# Copyright Jörg Schilling. All rights reserved.
#
# The contents of this file are subject to the terms of the
# Common Development and Distribution License, Version 1.0 only.
# See the file CDDL.Schily.txt in this distribution or
# http://opensource.org/licenses/cddl1.php for details.
###########################################################################
trap 'rm -fr /tmp/cpp-m.$$ ; exit 1' 1 2 15
cc -Wp,-M/tmp/cpp-m.$$ -E > /dev/null "$@"
cat /tmp/cpp-m.$$
rm -f /tmp/cpp-m.$$
syntax highlighted by Code2HTML, v. 0.9.1