diff --git a/phases/51-gnustep-back.sh b/phases/51-gnustep-back.sh index a73692b..f8bf62d 100644 --- a/phases/51-gnustep-back.sh +++ b/phases/51-gnustep-back.sh @@ -18,19 +18,37 @@ echo "### Loading GNUstep environment" . "$UNIX_INSTALL_PREFIX/share/GNUstep/Makefiles/GNUstep.sh" echo -echo "### Running configure" +echo "### Running configure -- headless backend" ./configure \ --enable-graphics=headless \ --enable-server=headless \ + --with-name=headless \ --without-freetype \ --host=$TARGET \ CFLAGS="-Wno-int-conversion" echo -echo "### Building" +echo "### Building -- headless backend" make -j`nproc` echo -echo "### Installing" -make install \ No newline at end of file +echo "### Installing -- headless backend" +make install +make distclean + +echo +echo "### Running configure -- cairo backend" + +./configure \ + --with-name=cairo \ + --host=$TARGET \ + CFLAGS="-Wno-int-conversion" + +echo +echo "### Building -- cairo backend" +make -j`nproc` + +echo +echo "### Installing -- cairo backend" +make install