26 lines
639 B
Bash
26 lines
639 B
Bash
![]() |
# ------------------------------------------------------------------------------
|
||
|
# Copyright (C) 2012, Robert Johansson <rob@raditex.nu>, Raditex Control AB
|
||
|
# All rights reserved.
|
||
|
#
|
||
|
# rSCADA
|
||
|
# http://www.rSCADA.se
|
||
|
# info@raditex.nu
|
||
|
#
|
||
|
# ------------------------------------------------------------------------------
|
||
|
|
||
|
if [ ! -f Makefile ]; then
|
||
|
#
|
||
|
# regenerate automake files
|
||
|
#
|
||
|
echo "Running autotools..."
|
||
|
|
||
|
autoheader \
|
||
|
&& aclocal \
|
||
|
&& libtoolize --ltdl --copy --force \
|
||
|
&& automake --add-missing --copy \
|
||
|
&& autoconf
|
||
|
fi
|
||
|
|
||
|
debuild -i -us -uc -b
|
||
|
#sudo pbuilder build $(NAME)_$(VERSION)-1.dsc
|