File: autogen.sh

package info (click to toggle)
fauhdlc 20130704-1.1
  • links: PTS
  • area: main
  • in suites: stretch
  • size: 2,840 kB
  • ctags: 3,840
  • sloc: cpp: 23,179; ansic: 6,077; yacc: 825; lex: 761; makefile: 607; python: 465; xml: 403; sh: 61
file content (20 lines) | stat: -rwxr-xr-x 579 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/sh
# $Id: autogen.sh 4616 2009-08-27 14:59:56Z potyra $
#
# convenience script to setup autotools.
# 
# Copyright (C) 2007-2009 FAUmachine Team <info@faumachine.org>.
# This program is free software. You can redistribute it and/or modify it
# under the terms of the GNU General Public License, either version 2 of
# the License, or (at your option) any later version. See COPYING.

set -e

# create scripts directory in case it doesn't exist yet
if [ ! -d scripts ]; then
	mkdir -p scripts
fi

autoreconf -i
echo
echo "Now run ./configure to proceed in building FAUhdlc."