mirror of
https://git.kernel.org/pub/scm/network/wireless/iwd.git
synced 2024-11-05 03:29:24 +01:00
11 lines
166 B
Bash
Executable File
11 lines
166 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ -f config.status ]; then
|
|
make maintainer-clean
|
|
fi
|
|
|
|
./bootstrap && \
|
|
./configure --enable-maintainer-mode \
|
|
--enable-debug \
|
|
--prefix=/usr $*
|