mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-06 07:19:08 +00:00
25 lines
382 B
Bash
25 lines
382 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
command=''
|
||
|
sources=''
|
||
|
phase=0
|
||
|
for arg in $*
|
||
|
do
|
||
|
if [ "$phase" == 0 ] && [ "$arg" == '--' ]
|
||
|
then
|
||
|
phase=1
|
||
|
elif [ "$phase" == 0 ]
|
||
|
then
|
||
|
command="$command $arg"
|
||
|
elif [ "$phase" == 1 ]
|
||
|
then
|
||
|
sources="$sources $arg"
|
||
|
fi
|
||
|
done
|
||
|
|
||
|
for src in $sources
|
||
|
do
|
||
|
obj=`echo $src | sed -e 's/.cpp$/.o/'`
|
||
|
$command -MT $obj -M $src
|
||
|
done
|