contrib/OWB: add correct SDL dependency, fix compilers used
[AROS-Contrib.git] / freetype1 / lib / arch / win32 / makedep
blob34ade91f25b5a16f72ea53130763516d90e617df
1 # makedep
3 # This shell script creates a dependency file necessary for some compilers
4 # on the Win32 platform.
6 echo "\
7 # This dependency file to be used with various Win32 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/win32 -I. *.c | \
14    sed -e "s/\.o:/.obj:/" -e "s:/:\\\\:g") >> depend.win
16 (cd ../..
17  gcc -MM -Iarch/win32 -I. -Iextend extend/*.c | \
18    sed -e "s/^\(.*\)\.o:/extend\\\\\1.obj:/" -e "s:/:\\\\:g") >> depend.win
20 echo "!ifndef __MAKE__" >> depend.win
22 (cd ../..
23  gcc -MM -Iarch/win32 -I. -Iextend arch/win32/*.c | \
24    sed -e "s/^\(.*\)\.o:/arch\\\\win32\\\\\1.obj:/" \
25        -e "s:/:\\\\:g") >> depend.win
27 echo "!endif" >> depend.win
29 # eof