This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
MileStone! I can now configure and build with dist-4.0
[metaconfig.git] / dist-3.0at70b / mkdep
CommitLineData
959f3c4c
JH
1#!/bin/sh
2flags=""
3case "$@" in
4*--*)
5 for arg
6 do
7 shift
8 case "$arg" in
9 --) break;;
10 *) flags="$flags $arg";;
11 esac
12 done;;
13esac
14for srcfile
15do
16 /usr/bin/cpp -M -I. $flags $srcfile 2>/dev/null
17done
18exit 0