mirror of
https://github.com/pbatard/rufus.git
synced 2025-05-20 01:45:12 -04:00

* allows better integration with Clang * use ./autogen.sh to generate compilation scripts * old Makefile renamed to mf so that make -f mf can still be invoked * also fixed one Clang warning
11 lines
304 B
Bash
11 lines
304 B
Bash
#!/bin/sh
|
|
|
|
# use glibtoolize if it is available
|
|
(glibtoolize --version) < /dev/null > /dev/null 2>&1 && LIBTOOLIZE=glibtoolize || LIBTOOLIZE=libtoolize
|
|
|
|
$LIBTOOLIZE --copy --force || exit 1
|
|
aclocal || exit 1
|
|
autoheader || exit 1
|
|
autoconf || exit 1
|
|
automake -a -c || exit 1
|
|
./configure --disable-debug $*
|