File: autogen

package info (click to toggle)
canlock 3.3.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 3,840 kB
  • sloc: ansic: 5,100; sh: 4,587; yacc: 643; lex: 228; makefile: 134
file content (17 lines) | stat: -rwxr-xr-x 247 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#! /bin/sh

# Generate/Update autotools related files to distribute
set -e
autoreconf -v -i -f
set +e

# Clean up
rm "config.h.in~"
rm "configure~"
rm "hp/config.h.in~"
rm "hp/configure~"
rm -rf "autom4te.cache"
rm -rf "hp/autom4te.cache"


# EOF