contrib/OWB: add correct SDL dependency, fix compilers used
[AROS-Contrib.git] / freetype1 / lib / arch / win16 / makedep
blob594952bd2a1120192da58f2a7824bac639c88a42
1 # makedep
3 # This shell script creates a dependency file necessary for older compilers
4 # on the Windows 16-bit platform.
6 echo "\
7 # This dependency file to be used with various Windows compilers
8 # has been generated automatically with the script \`makedep' on
9 # `date +%d-%b-%Y`.
10 " > depend.win
12 (cd ../..
13  gcc -MM -Iarch/win16 -I. \
14      *.c | \
15    sed -e "s/\.o:/.obj:/" -e "s:/:\\\\:g") >> depend.win
17 (cd ../..
18  gcc -MM -Iarch/win16 -I. -Iextend \
19      extend/*.c | \
20    sed -e "s/^\(.*\)\.o:/extend\\\\\1.obj:/" -e "s:/:\\\\:g") >> depend.win
22 echo "!ifndef __MAKE__" >> depend.win
24 (cd ../..
25  gcc -MM -Iarch/win16 -I. -Iextend -DTT_HUGE_PTR \
26      arch/win16/*.c | \
27    sed -e "s/^\(.*\)\.o:/arch\\\\win16\\\\\1.obj:/" \
28        -e "s:/:\\\\:g") >> depend.win
30 echo "!endif" >> depend.win
32 # eof