mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-05 14:59:03 +00:00
25 lines
406 B
Bash
Executable file
25 lines
406 B
Bash
Executable file
#!/bin/sh
|
|
|
|
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
|
|
|