mirror of
https://github.com/albfan/miraclecast.git
synced 2025-02-12 14:11:56 +00:00
Avoid automatic make commands on autotools
This commit is contained in:
parent
506f1e7b28
commit
3f5270ee7a
2 changed files with 4 additions and 6 deletions
|
@ -29,22 +29,18 @@ if [ "x$1" = "xc" ]; then
|
||||||
shift
|
shift
|
||||||
args="$args $@"
|
args="$args $@"
|
||||||
$topdir/configure CFLAGS='-g -O0 -ftrapv' $args
|
$topdir/configure CFLAGS='-g -O0 -ftrapv' $args
|
||||||
make clean
|
|
||||||
elif [ "x$1" = "xg" ]; then
|
elif [ "x$1" = "xg" ]; then
|
||||||
shift
|
shift
|
||||||
args="$args $@"
|
args="$args $@"
|
||||||
$topdir/configure CFLAGS='-g -O0 -ftrapv' $args
|
$topdir/configure CFLAGS='-g -O0 -ftrapv' $args
|
||||||
make clean
|
|
||||||
elif [ "x$1" = "xa" ]; then
|
elif [ "x$1" = "xa" ]; then
|
||||||
shift
|
shift
|
||||||
args="$args $@"
|
args="$args $@"
|
||||||
$topdir/configure CFLAGS='-g -O0 -Wsuggest-attribute=pure -Wsuggest-attribute=const -ftrapv' $args
|
$topdir/configure CFLAGS='-g -O0 -Wsuggest-attribute=pure -Wsuggest-attribute=const -ftrapv' $args
|
||||||
make clean
|
|
||||||
elif [ "x$1" = "xl" ]; then
|
elif [ "x$1" = "xl" ]; then
|
||||||
shift
|
shift
|
||||||
args="$args $@"
|
args="$args $@"
|
||||||
$topdir/configure CC=clang CFLAGS='-g -O0 -ftrapv' $args
|
$topdir/configure CC=clang CFLAGS='-g -O0 -ftrapv' $args
|
||||||
make clean
|
|
||||||
elif [ "x$1" = "xs" ]; then
|
elif [ "x$1" = "xs" ]; then
|
||||||
shift
|
shift
|
||||||
args="$args $@"
|
args="$args $@"
|
||||||
|
|
|
@ -165,13 +165,14 @@ AC_MSG_NOTICE([Build configuration:
|
||||||
bindir: $bindir
|
bindir: $bindir
|
||||||
libdir: $libdir
|
libdir: $libdir
|
||||||
includedir: $includedir
|
includedir: $includedir
|
||||||
|
sysconfdir: $sysconfdir
|
||||||
|
|
||||||
Miscellaneous Options:
|
Miscellaneous Options:
|
||||||
building tests: $have_check
|
building tests: $have_check
|
||||||
code coverage: $use_gcov
|
code coverage: $use_gcov
|
||||||
|
rely udev: ${enable_rely_udev:-no}
|
||||||
|
|
||||||
Compilation
|
Compilation
|
||||||
mkdir build && cd build
|
|
||||||
"${MAKE-make}" to start compilation process
|
"${MAKE-make}" to start compilation process
|
||||||
"${MAKE-make}" check to pass test])
|
"${MAKE-make}" check to pass test])
|
||||||
else
|
else
|
||||||
|
@ -181,11 +182,12 @@ AC_MSG_NOTICE([Build configuration:
|
||||||
bindir: $bindir
|
bindir: $bindir
|
||||||
libdir: $libdir
|
libdir: $libdir
|
||||||
includedir: $includedir
|
includedir: $includedir
|
||||||
|
sysconfdir: $sysconfdir
|
||||||
|
|
||||||
Miscellaneous Options:
|
Miscellaneous Options:
|
||||||
building tests: $have_check
|
building tests: $have_check
|
||||||
|
rely udev: ${enable_rely_udev:-no}
|
||||||
|
|
||||||
Compilation
|
Compilation
|
||||||
mkdir build && cd build
|
|
||||||
"${MAKE-make}" to start compilation process])
|
"${MAKE-make}" to start compilation process])
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in a new issue