1
0
mirror of https://github.com/PDP-10/its.git synced 2026-01-26 04:02:06 +00:00

Build the Chaosnet bridge.

This commit is contained in:
Lars Brinkhoff
2023-09-09 13:22:53 +02:00
parent 0a6361f9ff
commit 0130d79d3d
3 changed files with 11 additions and 2 deletions

View File

@@ -69,7 +69,8 @@ BINIGNORE=-e '^(ka10|kl10|ks10|minsys)$$'
# These are on the minsrc tape.
SRCIGNORE=-e '^(system|midas)$$'
SUBMODULES = dasm itstar klh10 mldev simh sims supdup tapeutils tv11 pdp6 vt05 tek4010
SUBMODULES = dasm itstar klh10 mldev simh sims supdup cbridge \
tapeutils tv11 pdp6 vt05 tek4010
# These files are used to create bootable tape images.
RAM = bin/ks10/boot/ram.262
@@ -101,7 +102,8 @@ DUMP=$(shell cd src; ls syseng/dump.* sysnet/netwrk.*)
SMF:=$(addprefix tools/,$(addsuffix /.gitignore,$(SUBMODULES)))
OUT=out/$(EMULATOR)
all: its $(OUT)/stamp/test $(OUT)/stamp/emulators tools/supdup/supdup
all: its $(OUT)/stamp/test $(OUT)/stamp/emulators \
tools/supdup/supdup tools/cbridge/cbridge
its: $(SMF) $(OUT)/stamp/its
@@ -381,6 +383,9 @@ $(TEK): tek-hack
tools/supdup/supdup:
$(MAKE) -C tools/supdup
tools/cbridge/cbridge:
$(MAKE) -C tools/cbridge
$(SMF):
$(GIT) submodule sync --recursive `dirname $@`
$(GIT) submodule update --recursive --init `dirname $@`