File: autogen.sh

package info (click to toggle)
adonthell-data 0.3.8-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, buster, sid, trixie
  • size: 27,040 kB
  • sloc: python: 5,172; sh: 4,584; makefile: 420; xml: 40; sed: 16
file content (17 lines) | stat: -rwxr-xr-x 411 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/sh
# First of all clean up the generated crud
rm -f configure config.log config.cache
rm -f config.status aclocal.m4
rm -f `find . -name 'Makefile.in'`
rm -f `find . -name 'Makefile'`

# Regenerate everything

aclocal -I m4 
automake --add-missing --gnu --copy
autoconf 

echo
echo "Now type './configure' to prepare Waste's Edge for compilation."
echo "Afterwards, 'make install' will install it."
echo