File: autoclean.sh

package info (click to toggle)
gettext 0.21-12
  • links: PTS
  • area: main
  • in suites: bookworm
  • size: 133,652 kB
  • sloc: ansic: 516,611; sh: 53,532; perl: 17,889; makefile: 9,062; lisp: 3,210; yacc: 1,032; cpp: 704; java: 615; cs: 555; objc: 337; awk: 79; tcl: 63; sed: 55; xml: 40; pascal: 11; php: 7
file content (48 lines) | stat: -rwxr-xr-x 950 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
38
39
40
41
42
43
44
45
46
47
48
#!/bin/sh
# Example for use of GNU gettext.
# This file is in the public domain.
#
# Script for cleaning all autogenerated files.

test ! -f Makefile || make distclean
rm -rf autom4te.cache

if test "$1" = fromscratch; then

  # Brought in by explicit copy.
  rm -rf admin

fi

# Brought in by autopoint.
rm -f ABOUT-NLS
rm -f m4/gettext.m4
rm -f m4/host-cpu-c-abi.m4
rm -f m4/iconv.m4
rm -f m4/intlmacosx.m4
rm -f m4/lib-ld.m4
rm -f m4/lib-link.m4
rm -f m4/lib-prefix.m4
rm -f m4/nls.m4
rm -f m4/po.m4
rm -f m4/progtest.m4
rm -f po/Makefile.in.in
rm -f po/remove-potcdate.sin
rm -f admin/config.rpath

# Generated through admin/cvs.sh.
  rm -f acinclude.m4
  rm -f subdirs configure.files
  rm -f configure.in
  # Generated by aclocal.
  rm -f aclocal.m4
  # Generated by autoconf.
  rm -f configure
  rm -f config.h.in stamp-h.in
  rm -f Makefile.in m4/Makefile.in

# Generated.
rm -f po/Makefile.in
rm -f po/*.pot
rm -f po/stamp-po
rm -f po/*.gmo