Minor improvements

This commit is contained in:
Robin Jones 2023-02-27 00:48:22 +00:00
parent 06054478e5
commit 00264c6081
2 changed files with 25 additions and 19 deletions

View File

@ -6,8 +6,12 @@
"mounts": [ "mounts": [
"source=/var/run/docker.sock,target=/var/run/docker.sock,type=bind", "source=/var/run/docker.sock,target=/var/run/docker.sock,type=bind",
// Keep command history // Keep command history
"source=nano-bashhistory,target=/home/vscode/commandhistory,type=volume", "source=nano-bashhistory,target=/home/vscode/commandhistory,type=volume"//,
// Could this handle USB?
// "type=bind,source=/dev/bus/usb,target=/dev/bus/usb"
], ],
"customizations": {
"vscode": {
// Set *default* container specific settings.json values on container create. // Set *default* container specific settings.json values on container create.
"settings": { "settings": {
}, },
@ -17,4 +21,6 @@
"streetsidesoftware.code-spell-checker", "streetsidesoftware.code-spell-checker",
"ms-vscode.makefile-tools" "ms-vscode.makefile-tools"
] ]
}
}
} }

View File

@ -35,7 +35,7 @@ clean:
$(shell rm -rf ./$(BUILD_DIR)) $(shell rm -rf ./$(BUILD_DIR))
.PHONY: clean .PHONY: clean
finalize-sc64: finalize-sc64:
$(shell cd ./$(BUILD_DIR) && python3 ../tools/finalize.py ./$(EXE_NAME).z64) $(shell cd ./$(BUILD_DIR) && python3 ../tools/finalize.py ./$(EXE_NAME).z64)
-include $(wildcard $(BUILD_DIR)/*.d) -include $(wildcard $(BUILD_DIR)/*.d)