Skip to content

Commit 19863ff

Browse files
committed
Science Commit 5.
1 parent 7ff7ffb commit 19863ff

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
38295
1+
38895

scripts/compile-all-modules.sh

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,15 @@ echo "════════════════════════
1919
echo ""
2020

2121
# 1. Core source/ (includes all sourcepaths so Main.java can resolve external modules)
22-
echo "[1/6] Core sources (source/)..."
22+
echo "[1/8] Core sources (source/)..."
2323
find "$ROOT/source" -name "*.java" > /tmp/nwe-core.txt
2424
javac -d "$OUT" -cp "$CP" \
2525
-sourcepath "$ROOT/source:$ROOT/modules/fbi/source:$ROOT/modules/cia/source:$ROOT/modules/nsa/source:$ROOT/modules/duke/source:$ROOT/modules/library/source:$ROOT/modules/gray/source:$ROOT/modules/gray.a85/source:$ROOT/modules/red/Futures/source" \
2626
@/tmp/nwe-core.txt 2>&1 | grep -i error || echo " OK"
2727
rm -f /tmp/nwe-core.txt
2828

2929
# 2. FBI/CIA/NSA, Duke, Library
30-
echo "[2/6] FBI/CIA/NSA, Duke, Library..."
30+
echo "[2/8] FBI/CIA/NSA, Duke, Library..."
3131
javac -d "$OUT" -cp "$CP" \
3232
-sourcepath "$ROOT/source:$ROOT/modules/fbi/source:$ROOT/modules/cia/source:$ROOT/modules/nsa/source:$ROOT/modules/duke/source:$ROOT/modules/library/source" \
3333
"$ROOT/modules/fbi/source/CaliforniaFBIServer.java" \
@@ -37,7 +37,7 @@ javac -d "$OUT" -cp "$CP" \
3737
"$ROOT/modules/library/source/StanfordLibraryServer.java" 2>&1 | grep -i error || echo " OK"
3838

3939
# 3. Gray registries
40-
echo "[3/6] Gray Port Registry + Gray85..."
40+
echo "[3/8] Gray Port Registry + Gray85..."
4141
javac -d "$OUT" -cp "$CP" \
4242
-sourcepath "$ROOT/source:$ROOT/modules/gray/source:$ROOT/modules/gray.a85/source" \
4343
"$ROOT/modules/gray/source/PortBindingGate.java" \
@@ -46,7 +46,7 @@ javac -d "$OUT" -cp "$CP" \
4646
"$ROOT/modules/gray.a85/source/Gray85PortRegistryServer.java" 2>&1 | grep -i error || echo " OK"
4747

4848
# 4. Futures (DemocraticAIServer)
49-
echo "[4/6] Futures (DemocraticAIServer)..."
49+
echo "[4/8] Futures (DemocraticAIServer)..."
5050
find "$ROOT/modules/red/Futures/source" -name "*.java" > /tmp/futures.txt 2>/dev/null
5151
if [ -s /tmp/futures.txt ]; then
5252
javac -d "$OUT" -cp "$CP" -sourcepath "$ROOT/source:$ROOT/modules/red/Futures/source" @/tmp/futures.txt 2>&1 | grep -i error || echo " OK"
@@ -56,7 +56,7 @@ fi
5656
rm -f /tmp/futures.txt
5757

5858
# 5. StrernaryDirectory
59-
echo "[5/7] StrernaryDirectory (port 2000)..."
59+
echo "[5/8] StrernaryDirectory (port 2000)..."
6060
javac -d "$OUT" -cp "$CP" -sourcepath "$ROOT/source" \
6161
"$ROOT/source/strernary/StrernaryDirectoryServer.java" 2>&1 | grep -i error || echo " OK"
6262

0 commit comments

Comments
 (0)