-
Notifications
You must be signed in to change notification settings - Fork 1
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
372ee93
commit d8b9950
Showing
51 changed files
with
221 additions
and
101 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 |
---|---|---|
@@ -1,3 +1,9 @@ | ||
set root=..\.. | ||
set path=%root%\conf\scripts;%path% | ||
call build %1 %2 %3 %4 %5 %6 %7 %8 %9 | ||
@echo off | ||
set root=. | ||
:loop | ||
if exist "%root%\tools\mk\all.mk" goto found | ||
set root=%root%\.. | ||
goto loop | ||
:found | ||
set path=%root%\tools\conf\scripts;%path% | ||
call build %1 %2 %3 %4 %5 %6 %7 %8 %9 |
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 |
---|---|---|
@@ -1,6 +1,7 @@ | ||
#! /bin/sh | ||
# | ||
|
||
export ROOT=../.. | ||
export PATH=$ROOT/conf/scripts:$PATH | ||
export ROOT=. | ||
while [ ! -f "$ROOT/tools/mk/all.mk" ]; do ROOT="$ROOT/.."; done | ||
export PATH=$ROOT/tools/conf/scripts:$PATH | ||
build-lnx.sh $* |
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 |
---|---|---|
@@ -1,3 +1,9 @@ | ||
set root=..\..\.. | ||
set path=%root%\conf\scripts;%path% | ||
call build %1 %2 %3 %4 %5 %6 %7 %8 %9 | ||
@echo off | ||
set root=. | ||
:loop | ||
if exist "%root%\tools\mk\all.mk" goto found | ||
set root=%root%\.. | ||
goto loop | ||
:found | ||
set path=%root%\tools\conf\scripts;%path% | ||
call build %1 %2 %3 %4 %5 %6 %7 %8 %9 |
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 |
---|---|---|
@@ -1,6 +1,7 @@ | ||
#! /bin/sh | ||
# | ||
|
||
export ROOT=../../.. | ||
export PATH=$ROOT/conf/scripts:$PATH | ||
export ROOT=. | ||
while [ ! -f "$ROOT/tools/mk/all.mk" ]; do ROOT="$ROOT/.."; done | ||
export PATH=$ROOT/tools/conf/scripts:$PATH | ||
build-lnx.sh $* |
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 |
---|---|---|
@@ -1,3 +1,9 @@ | ||
set root=..\..\.. | ||
set path=%root%\conf\scripts;%path% | ||
call build %1 %2 %3 %4 %5 %6 %7 %8 %9 | ||
@echo off | ||
set root=. | ||
:loop | ||
if exist "%root%\tools\mk\all.mk" goto found | ||
set root=%root%\.. | ||
goto loop | ||
:found | ||
set path=%root%\tools\conf\scripts;%path% | ||
call build %1 %2 %3 %4 %5 %6 %7 %8 %9 |
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 |
---|---|---|
@@ -1,6 +1,7 @@ | ||
#! /bin/sh | ||
# | ||
|
||
export ROOT=../../.. | ||
export PATH=$ROOT/conf/scripts:$PATH | ||
export ROOT=. | ||
while [ ! -f "$ROOT/tools/mk/all.mk" ]; do ROOT="$ROOT/.."; done | ||
export PATH=$ROOT/tools/conf/scripts:$PATH | ||
build-lnx.sh $* |
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 |
---|---|---|
@@ -1,3 +1,9 @@ | ||
set root=..\..\..\.. | ||
set path=%root%\conf\scripts;%path% | ||
call build %1 %2 %3 %4 %5 %6 %7 %8 %9 | ||
@echo off | ||
set root=. | ||
:loop | ||
if exist "%root%\tools\mk\all.mk" goto found | ||
set root=%root%\.. | ||
goto loop | ||
:found | ||
set path=%root%\tools\conf\scripts;%path% | ||
call build %1 %2 %3 %4 %5 %6 %7 %8 %9 |
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 |
---|---|---|
@@ -1,6 +1,7 @@ | ||
#! /bin/sh | ||
# | ||
|
||
export ROOT=../../../.. | ||
export PATH=$ROOT/conf/scripts:$PATH | ||
export ROOT=. | ||
while [ ! -f "$ROOT/tools/mk/all.mk" ]; do ROOT="$ROOT/.."; done | ||
export PATH=$ROOT/tools/conf/scripts:$PATH | ||
build-lnx.sh $* |
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
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 |
---|---|---|
|
@@ -15,4 +15,4 @@ DIRS = hdpmi | |
|
||
DIRS = hdpmi | ||
|
||
!include $(%ROOT)/mk/appsdos.mk | ||
!include $(%ROOT)tools/mk/appsdos.mk |
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 |
---|---|---|
@@ -1,3 +1,9 @@ | ||
set root=..\..\.. | ||
set path=%root%\conf\scripts;%path% | ||
call build %1 %2 %3 %4 %5 %6 %7 %8 %9 | ||
@echo off | ||
set root=. | ||
:loop | ||
if exist "%root%\tools\mk\all.mk" goto found | ||
set root=%root%\.. | ||
goto loop | ||
:found | ||
set path=%root%\tools\conf\scripts;%path% | ||
call build %1 %2 %3 %4 %5 %6 %7 %8 %9 |
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 |
---|---|---|
@@ -1,6 +1,7 @@ | ||
#! /bin/sh | ||
# | ||
|
||
export ROOT=../../.. | ||
export PATH=$ROOT/conf/scripts:$PATH | ||
export ROOT=. | ||
while [ ! -f "$ROOT/tools/mk/all.mk" ]; do ROOT="$ROOT/.."; done | ||
export PATH=$ROOT/tools/conf/scripts:$PATH | ||
build-lnx.sh $* |
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 |
---|---|---|
@@ -1,3 +1,9 @@ | ||
set root=..\..\..\.. | ||
set path=%root%\conf\scripts;%path% | ||
call build %1 %2 %3 %4 %5 %6 %7 %8 %9 | ||
@echo off | ||
set root=. | ||
:loop | ||
if exist "%root%\tools\mk\all.mk" goto found | ||
set root=%root%\.. | ||
goto loop | ||
:found | ||
set path=%root%\tools\conf\scripts;%path% | ||
call build %1 %2 %3 %4 %5 %6 %7 %8 %9 |
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 |
---|---|---|
@@ -1,6 +1,7 @@ | ||
#! /bin/sh | ||
# | ||
|
||
export ROOT=../../../.. | ||
export PATH=$ROOT/conf/scripts:$PATH | ||
export ROOT=. | ||
while [ ! -f "$ROOT/tools/mk/all.mk" ]; do ROOT="$ROOT/.."; done | ||
export PATH=$ROOT/tools/conf/scripts:$PATH | ||
build-lnx.sh $* |
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
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
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 |
---|---|---|
@@ -1,3 +1,9 @@ | ||
set root=..\..\..\.. | ||
set path=%root%\conf\scripts;%path% | ||
call build %1 %2 %3 %4 %5 %6 %7 %8 %9 | ||
@echo off | ||
set root=. | ||
:loop | ||
if exist "%root%\tools\mk\all.mk" goto found | ||
set root=%root%\.. | ||
goto loop | ||
:found | ||
set path=%root%\tools\conf\scripts;%path% | ||
call build %1 %2 %3 %4 %5 %6 %7 %8 %9 |
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 |
---|---|---|
@@ -1,6 +1,7 @@ | ||
#! /bin/sh | ||
# | ||
|
||
export ROOT=../../../.. | ||
export PATH=$ROOT/conf/scripts:$PATH | ||
export ROOT=. | ||
while [ ! -f "$ROOT/tools/mk/all.mk" ]; do ROOT="$ROOT/.."; done | ||
export PATH=$ROOT/tools/conf/scripts:$PATH | ||
build-lnx.sh $* |
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
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 |
---|---|---|
@@ -1,3 +1,9 @@ | ||
set root=..\..\..\.. | ||
set path=%root%\conf\scripts;%path% | ||
call build %1 %2 %3 %4 %5 %6 %7 %8 %9 | ||
@echo off | ||
set root=. | ||
:loop | ||
if exist "%root%\tools\mk\all.mk" goto found | ||
set root=%root%\.. | ||
goto loop | ||
:found | ||
set path=%root%\tools\conf\scripts;%path% | ||
call build %1 %2 %3 %4 %5 %6 %7 %8 %9 |
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 |
---|---|---|
@@ -1,6 +1,7 @@ | ||
#! /bin/sh | ||
# | ||
|
||
export ROOT=../../../.. | ||
export PATH=$ROOT/conf/scripts:$PATH | ||
export ROOT=. | ||
while [ ! -f "$ROOT/tools/mk/all.mk" ]; do ROOT="$ROOT/.."; done | ||
export PATH=$ROOT/tools/conf/scripts:$PATH | ||
build-lnx.sh $* |
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
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 |
---|---|---|
|
@@ -6,4 +6,4 @@ | |
|
||
DIRS = kernel krnl286 krnl386 | ||
|
||
!include $(%ROOT)/mk/all.mk | ||
!include $(%ROOT)tools/mk/all.mk |
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 |
---|---|---|
@@ -1,3 +1,9 @@ | ||
set root=..\..\.. | ||
set path=%root%\conf\scripts;%path% | ||
call build %1 %2 %3 %4 %5 %6 %7 %8 %9 | ||
@echo off | ||
set root=. | ||
:loop | ||
if exist "%root%\tools\mk\all.mk" goto found | ||
set root=%root%\.. | ||
goto loop | ||
:found | ||
set path=%root%\tools\conf\scripts;%path% | ||
call build %1 %2 %3 %4 %5 %6 %7 %8 %9 |
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 |
---|---|---|
@@ -1,6 +1,7 @@ | ||
#! /bin/sh | ||
# | ||
|
||
export ROOT=../../.. | ||
export PATH=$ROOT/conf/scripts:$PATH | ||
export ROOT=. | ||
while [ ! -f "$ROOT/tools/mk/all.mk" ]; do ROOT="$ROOT/.."; done | ||
export PATH=$ROOT/tools/conf/scripts:$PATH | ||
build-lnx.sh $* |
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
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 |
---|---|---|
@@ -1,3 +1,9 @@ | ||
set root=..\..\.. | ||
set path=%root%\conf\scripts;%path% | ||
call build %1 %2 %3 %4 %5 %6 %7 %8 %9 | ||
@echo off | ||
set root=. | ||
:loop | ||
if exist "%root%\tools\mk\all.mk" goto found | ||
set root=%root%\.. | ||
goto loop | ||
:found | ||
set path=%root%\tools\conf\scripts;%path% | ||
call build %1 %2 %3 %4 %5 %6 %7 %8 %9 |
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 |
---|---|---|
@@ -1,6 +1,7 @@ | ||
#! /bin/sh | ||
# | ||
|
||
export ROOT=../../.. | ||
export PATH=$ROOT/conf/scripts:$PATH | ||
export ROOT=. | ||
while [ ! -f "$ROOT/tools/mk/all.mk" ]; do ROOT="$ROOT/.."; done | ||
export PATH=$ROOT/tools/conf/scripts:$PATH | ||
build-lnx.sh $* |
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
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
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 |
---|---|---|
@@ -1,3 +1,9 @@ | ||
set root=..\..\.. | ||
set path=%root%\conf\scripts;%path% | ||
call build %1 %2 %3 %4 %5 %6 %7 %8 %9 | ||
@echo off | ||
set root=. | ||
:loop | ||
if exist "%root%\tools\mk\all.mk" goto found | ||
set root=%root%\.. | ||
goto loop | ||
:found | ||
set path=%root%\tools\conf\scripts;%path% | ||
call build %1 %2 %3 %4 %5 %6 %7 %8 %9 |
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 |
---|---|---|
@@ -1,6 +1,7 @@ | ||
#! /bin/sh | ||
# | ||
|
||
export ROOT=../../.. | ||
export PATH=$ROOT/conf/scripts:$PATH | ||
export ROOT=. | ||
while [ ! -f "$ROOT/tools/mk/all.mk" ]; do ROOT="$ROOT/.."; done | ||
export PATH=$ROOT/tools/conf/scripts:$PATH | ||
build-lnx.sh $* |
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 |
---|---|---|
|
@@ -8,7 +8,7 @@ | |
|
||
DIRS = progman winver | ||
|
||
!include $(%ROOT)/mk/all.mk | ||
!include $(%ROOT)tools/mk/all.mk | ||
|
||
#TARGETS=subdirs | ||
#TARGET=all |
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 |
---|---|---|
@@ -1,3 +1,9 @@ | ||
set root=..\..\..\.. | ||
set path=%root%\conf\scripts;%path% | ||
call build %1 %2 %3 %4 %5 %6 %7 %8 %9 | ||
@echo off | ||
set root=. | ||
:loop | ||
if exist "%root%\tools\mk\all.mk" goto found | ||
set root=%root%\.. | ||
goto loop | ||
:found | ||
set path=%root%\tools\conf\scripts;%path% | ||
call build %1 %2 %3 %4 %5 %6 %7 %8 %9 |
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 |
---|---|---|
@@ -1,6 +1,7 @@ | ||
#! /bin/sh | ||
# | ||
|
||
export ROOT=../../../.. | ||
export PATH=$ROOT/conf/scripts:$PATH | ||
export ROOT=. | ||
while [ ! -f "$ROOT/tools/mk/all.mk" ]; do ROOT="$ROOT/.."; done | ||
export PATH=$ROOT/tools/conf/scripts:$PATH | ||
build-lnx.sh $* |
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
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 |
---|---|---|
@@ -1,3 +1,9 @@ | ||
set root=..\..\..\.. | ||
set path=%root%\conf\scripts;%path% | ||
call build %1 %2 %3 %4 %5 %6 %7 %8 %9 | ||
@echo off | ||
set root=. | ||
:loop | ||
if exist "%root%\tools\mk\all.mk" goto found | ||
set root=%root%\.. | ||
goto loop | ||
:found | ||
set path=%root%\tools\conf\scripts;%path% | ||
call build %1 %2 %3 %4 %5 %6 %7 %8 %9 |
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 |
---|---|---|
@@ -1,6 +1,7 @@ | ||
#! /bin/sh | ||
# | ||
|
||
export ROOT=../../../.. | ||
export PATH=$ROOT/conf/scripts:$PATH | ||
export ROOT=. | ||
while [ ! -f "$ROOT/tools/mk/all.mk" ]; do ROOT="$ROOT/.."; done | ||
export PATH=$ROOT/tools/conf/scripts:$PATH | ||
build-lnx.sh $* |
Oops, something went wrong.