mirror of
https://github.com/n64decomp/banjo-kazooie.git
synced 2024-11-26 22:30:22 +00:00
remove tools/bk_tools submodule
This commit is contained in:
parent
9dc37b91f5
commit
1c0895e349
3
.gitmodules
vendored
3
.gitmodules
vendored
@ -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
|
||||
|
@ -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
|
||||
|
||||
|
7
Makefile
7
Makefile
@ -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
|
||||
|
@ -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
|
||||
```
|
||||
|
||||
|
@ -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
|
Loading…
Reference in New Issue
Block a user