X-Git-Url: http://git.tuebingen.mpg.de/?a=blobdiff_plain;f=depend.sh;h=c6424daaf1e7dc6a02ec4bfabe800d9591c0c0b8;hb=5414dfd4356e63634f1a4e94382d14e200759d18;hp=a0af40c845167390f53640144b2adc09c5cf1ee9;hpb=3634794c3ba2f9fba60d3b26bcceae51fb3718c6;p=paraslash.git diff --git a/depend.sh b/depend.sh index a0af40c8..c6424daa 100755 --- a/depend.sh +++ b/depend.sh @@ -9,8 +9,8 @@ # to prefix the .d and .o targets respectively. $3 is the directory # that contains the *.cmdline.h files generated by gengetopt. -# As gcc outputs the dependencies on the *.cmdline.h files either as either -# foo.cmdline.h or as $cmdline_dir/foo,cmdline.h, depending on whether the +# As gcc outputs the dependencies on the *.cmdline.h files either as +# foo.cmdline.h or as $cmdline_dir/foo.cmdline.h, depending on whether the # latter file exists, we prefix the former with $2/ dep_dir="$1" @@ -20,6 +20,6 @@ shift shift shift -LC_ALL=C gcc -MM -MG "$@" \ +LC_ALL=C cc -MM -MG "$@" \ | sed -e "s@^\(.*\)\.o:@$dep_dir/\1.d $object_dir/\1.o:@" \ -e "s@[ ^]\([a-zA-Z0-9_]\{1,\}\.cmdline.h\)@ $cmdline_dir/\1@g"