forked from gnustep/tools-windows-msvc
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
390f115
commit 4efd841
Showing
2 changed files
with
49 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
diff --git a/GNUmakefile b/GNUmakefile | ||
index 03ad17f..029a521 100644 | ||
--- a/GNUmakefile | ||
+++ b/GNUmakefile | ||
@@ -47,7 +47,7 @@ include ./Version | ||
# | ||
# The list of subproject directories | ||
# | ||
-SUBPROJECTS = Source Tools | ||
+SUBPROJECTS = Source | ||
|
||
ifneq ($(fonts), no) | ||
SUBPROJECTS += Fonts |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
#!/bin/sh | ||
set -eo pipefail | ||
shopt -s inherit_errexit | ||
|
||
cd `dirname $0` | ||
|
||
export PROJECT=gnustep-back | ||
export GITHUB_REPO=gnustep/libs-back | ||
export TAG= | ||
|
||
# load environment and prepare project | ||
../scripts/common.bat prepare_project | ||
|
||
cd "$SRCROOT/$PROJECT" | ||
|
||
echo | ||
echo "### Loading GNUstep environment" | ||
. "$UNIX_INSTALL_PREFIX/share/GNUstep/Makefiles/GNUstep.sh" | ||
|
||
echo | ||
echo "### Running configure" | ||
|
||
./configure \ | ||
--enable-graphics=headless \ | ||
--enable-server=headless \ | ||
--without-freetype \ | ||
--host=$TARGET \ | ||
CFLAGS="-Wno-int-conversion" | ||
|
||
echo | ||
echo "### Building" | ||
make -j`nproc` | ||
|
||
echo | ||
echo "### Installing" | ||
make install |