diff options
author | Jouni Malinen <j@w1.fi> | 2008-12-20 20:42:39 +0200 |
---|---|---|
committer | Jouni Malinen <j@w1.fi> | 2008-12-20 20:42:39 +0200 |
commit | 5719f73c580e2f8142fbcdc443c40b2f3ad9773f (patch) | |
tree | e6eb1ad197dda8b28aa210a5dccafa58c0387cf4 /build_release | |
parent | 798afa8162c1c62d1b32a1bf6235144ce3639d15 (diff) | |
download | external_wpa_supplicant_8_ti-5719f73c580e2f8142fbcdc443c40b2f3ad9773f.zip external_wpa_supplicant_8_ti-5719f73c580e2f8142fbcdc443c40b2f3ad9773f.tar.gz external_wpa_supplicant_8_ti-5719f73c580e2f8142fbcdc443c40b2f3ad9773f.tar.bz2 |
Use parallel compilation to speed up release build
Diffstat (limited to 'build_release')
-rwxr-xr-x | build_release | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/build_release b/build_release index de26c08..ce525b7 100755 --- a/build_release +++ b/build_release @@ -104,7 +104,7 @@ CFLAGS += -DCONFIG_DEBUG_FILE EOF # First, build the Windows service & registry version and rename it - make windows-bin + make -j2 windows-bin mv wpa_supplicant.exe wpasvc.exe # Then, build "the standard" wpa_supplicant.exe @@ -113,7 +113,7 @@ CONFIG_MAIN=main CONFIG_BACKEND=file EOF - make windows-bin + make -j2 windows-bin for i in COPYING; do unix2dos < ../$i > ../../"$WDIR"/$i @@ -127,7 +127,7 @@ EOF cd wpa_gui-qt4 qmake -spec win32-x-g++ make -C icons - make + make -j2 cp release/wpa_gui.exe ../../../"$WDIR" cd ../../.. rm -rf "$PDIR" |