remove tools/bk_tools submodule

This commit is contained in:
banjo.decomp 2022-11-22 20:49:01 -06:00
parent 9dc37b91f5
commit 1c0895e349
6 changed files with 6 additions and 10 deletions

3
.gitmodules vendored
View File

@ -1,6 +1,3 @@
[submodule "tools/bk_tools"]
path = tools/bk_tools
url = https://github.com/MittenzHugg/bk_tools.git
[submodule "tools/asm-differ"]
path = tools/asm-differ
url = https://github.com/simonlindholm/asm-differ.git

View File

@ -5,6 +5,8 @@ ENV DEBIAN_FRONTEND=noninteractive
COPY packages.txt /
RUN apt-get update && apt-get install -y $(cat packages.txt)
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
COPY requirements.txt /
RUN python3 -m pip install -r requirements.txt

View File

@ -185,11 +185,6 @@ $(addprefix progress-,$(OVERLAYS)) : progress-% : progress/progress.%.csv
@$(PROGRESS_READ) $< $(VERSION) $*
# Verify that the roms match, also sets up diff_settings
verify-decompressed: $(DECOMPRESSED_BASEROM) $(Z64)
@$(DIFF) $(DECOMPRESSED_BASEROM) $(Z64) > /dev/null && \
$(PRINT) "$(YELLOW) _\n _( )_\n [ ]_\n ) _ _)\n [_( )_]\n$(BLUE)$(BASENAME).$(VERSION).uncompressed.z64$(NO_COL): $(GREEN)OK$(NO_COL)\n" || \
$(PRINT) "$(BLUE)$(BASEROM) $(RED)differs$(NO_COL)\n"
verify: $(BASEROM) $(FINAL_Z64)
@$(DIFF) $(BASEROM) $(FINAL_Z64) > /dev/null && \
$(PRINT) "$(YELLOW) _\n _( )_\n [ ]_\n ) _ _)\n [_( )_]\n$(BLUE)$(BASENAME).$(VERSION).z64$(NO_COL): $(GREEN)OK$(NO_COL)\n" || \
@ -433,7 +428,7 @@ MAKEFLAGS += -r
.SUFFIXES:
# Phony targets
.PHONY: all clean verify verify-decompressed $(OVERLAYS) progress $(addprefix progress-,$(OVERLAYS))
.PHONY: all clean verify $(OVERLAYS) progress $(addprefix progress-,$(OVERLAYS))
# Set up pipefail
SHELL = /bin/bash -e -o pipefail

View File

@ -59,6 +59,8 @@ Ubuntu 18.04 or higher.
```sh
sudo apt-get update && sudo apt-get install -y $(cat packages.txt)
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
python3 -m pip install -r requirements.txt
```

View File

@ -3,6 +3,7 @@ build-essential
cmake
gcc-mips-linux-gnu
less
curl
libglib2.0-0
libssl-dev
python3

@ -1 +0,0 @@
Subproject commit 5a880b4978b9c8c7954ef0dc5d3faeeca754229b