contrib/OWB: add correct SDL dependency, fix compilers used
[AROS-Contrib.git] / freetype1 / lib / arch / msdos / makedep
blobd566ed84243e8c460cc7a62c9135ec01dc68c123
1 # makedep
3 # This shell script creates a dependency file necessary for older compilers
4 # on the MS-DOS platform.
6 echo "\
7 # This dependency file to be used with various MS-DOS compilers
8 # has been generated automatically with the script \`makedep' on
9 # `date +%d-%b-%Y`.
10 " > depend.dos
12 (cd ../..
13  gcc -MM -Iarch/msdos -I. *.c | \
14    sed -e "s/\.o:/.obj:/" -e "s:/:\\\\:g") >> depend.dos
16 (cd ../..
17  gcc -MM -Iarch/msdos -I. -Iextend extend/*.c | \
18    sed -e "s/^\(.*\)\.o:/extend\\\\\1.obj:/" -e "s:/:\\\\:g") >> depend.dos
20 (cd ../..
21  gcc -MM -Iarch/msdos -I. -Iextend \
22      -DTT_HUGE_PTR -Dhuge_alloc -Dhuge_free arch/msdos/*.c | \
23    sed -e "s/^\(.*\)\.o:/arch\\\\msdos\\\\\1.obj:/" \
24        -e "s:/:\\\\:g") >> depend.dos
26 # eof