File: GenerateConfigureFiles.sh

package info (click to toggle)
libtk-img 1%3A2.0.1%2Bdfsg1-2
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 47,852 kB
  • sloc: ansic: 224,696; sh: 20,589; tcl: 8,921; makefile: 2,272; cpp: 1,933; ada: 1,681; pascal: 1,139; cs: 879; awk: 794; asm: 587; python: 542; xml: 95
file content (37 lines) | stat: -rwxr-xr-x 2,245 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#!/bin/bash

# Generate configure files for base and format handler.
autoconf ; rm -r autom4te.cache ; rm configure~
pushd base   ; autoconf ; rm -r autom4te.cache ; rm configure~ ; popd
pushd bmp    ; autoconf ; rm -r autom4te.cache ; rm configure~ ; popd
pushd dted   ; autoconf ; rm -r autom4te.cache ; rm configure~ ; popd
pushd flir   ; autoconf ; rm -r autom4te.cache ; rm configure~ ; popd
pushd gif    ; autoconf ; rm -r autom4te.cache ; rm configure~ ; popd
pushd ico    ; autoconf ; rm -r autom4te.cache ; rm configure~ ; popd
pushd jpeg   ; autoconf ; rm -r autom4te.cache ; rm configure~ ; popd
pushd pcx    ; autoconf ; rm -r autom4te.cache ; rm configure~ ; popd
pushd pixmap ; autoconf ; rm -r autom4te.cache ; rm configure~ ; popd
pushd png    ; autoconf ; rm -r autom4te.cache ; rm configure~ ; popd
pushd ppm    ; autoconf ; rm -r autom4te.cache ; rm configure~ ; popd
pushd ps     ; autoconf ; rm -r autom4te.cache ; rm configure~ ; popd
pushd raw    ; autoconf ; rm -r autom4te.cache ; rm configure~ ; popd
pushd sgi    ; autoconf ; rm -r autom4te.cache ; rm configure~ ; popd
pushd sun    ; autoconf ; rm -r autom4te.cache ; rm configure~ ; popd
pushd tga    ; autoconf ; rm -r autom4te.cache ; rm configure~ ; popd
pushd tiff   ; autoconf ; rm -r autom4te.cache ; rm configure~ ; popd
pushd window ; autoconf ; rm -r autom4te.cache ; rm configure~ ; popd
pushd xbm    ; autoconf ; rm -r autom4te.cache ; rm configure~ ; popd
pushd xpm    ; autoconf ; rm -r autom4te.cache ; rm configure~ ; popd

# Generate configure files for local support libraries.
pushd libjpeg; autoconf ; rm -r autom4te.cache ; rm configure~ ; popd
pushd libpng ; autoconf ; rm -r autom4te.cache ; rm configure~ ; popd
pushd libtiff; autoconf ; rm -r autom4te.cache ; rm configure~ ; popd
pushd zlib   ; autoconf ; rm -r autom4te.cache ; rm configure~ ; popd

# Generate stubs files for base and support libraries.
pushd base    ; tclsh ../tools/genStubs.tcl . tkimg.decls   ; popd
pushd libjpeg ; tclsh ../tools/genStubs.tcl . jpegtcl.decls ; popd
pushd libpng  ; tclsh ../tools/genStubs.tcl . pngtcl.decls  ; popd
pushd libtiff ; tclsh ../tools/genStubs.tcl . tifftcl.decls ; popd
pushd zlib    ; tclsh ../tools/genStubs.tcl . zlibtcl.decls ; popd