~ubuntu-branches/ubuntu/jaunty/texlive-bin/jaunty

« back to all changes in this revision

Viewing changes to build/TeX/libs/freetype/test/arch/msdos/makedep

  • Committer: Bazaar Package Importer
  • Author(s): Norbert Preining
  • Date: 2008-06-26 23:14:59 UTC
  • mfrom: (2.1.30 intrepid)
  • Revision ID: james.westby@ubuntu.com-20080626231459-y02rjsrgtafu83yr
Tags: 2007.dfsg.2-3
add missing source roadmap.fig of roadmap.eps in fontinst documentation
(Closes: #482915) (urgency medium due to RC bug)
(new patch add-missing-fontinst-source)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# makedep
2
 
#
3
 
# This shell script creates a dependency file necessary for older compilers
4
 
# on the MS-DOS platform.
5
 
#
6
 
# Copyright 1996-2002 by
7
 
# David Turner, Robert Wilhelm, and Werner Lemberg.
8
 
#
9
 
# This file is part of the FreeType project, and may only be used, modified,
10
 
# and distributed under the terms of the FreeType project license,
11
 
# LICENSE.TXT.  By continuing to use, modify, or distribute this file you
12
 
# indicate that you have read the license and understand and accept it
13
 
# fully.
14
 
 
15
 
echo "\
16
 
# This file is part of the FreeType project.
17
 
# Automatically generated, but you can customize to fit your needs.
18
 
# However, changes will be erased if not made in \`makedep'...
19
 
#
20
 
# This dependency file to be used with various MS-DOS compilers
21
 
# has been generated automatically with the script \`makedep' on
22
 
# `date +%Y-%m-%d`.
23
 
" > depend.dos
24
 
 
25
 
(cd ../..
26
 
 gcc -MM -I../lib/arch/msdos -I../lib -I../lib/extend -I. *.c | \
27
 
   sed -e "s/\.o:/.obj:/" -e "s:/:\\\\:g") >> depend.dos
28
 
 
29
 
(cd ../..
30
 
 gcc -MM -I../lib/arch/msdos -I../lib -I../lib/extend -I. \
31
 
     -Dreg_ax -Dint86 arch/msdos/*.c | \
32
 
   sed -e "s/^\(.*\)\.o:/arch\\\\msdos\\\\\1.obj:/" \
33
 
       -e "s:/:\\\\:g") >> depend.dos
34
 
 
35
 
# eof