gbdk-2020 | GameBoy Development Kit |
| download: https://git.y1.nz/archives/gbdk.tar.gz | |
| README | Files | Log | Refs | LICENSE |
commit 096e2b5fe213d779e68a8a9d3fbdd4373eab3793 parent bede1840ac4fd3e6596350676e3d1fbaa69ae08f Author: Toxa <56631470+untoxa@users.noreply.github.com> Date: Wed, 17 Feb 2021 20:33:48 +0300 Merge pull request #141 from bbbbbr/develop_gbcompress gbcompress: fix global 'make clean' error (missing -f flag for removing tmp file) Diffstat:
| M | gbdk-support/gbcompress/Makefile | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gbdk-support/gbcompress/Makefile b/gbdk-support/gbcompress/Makefile @@ -15,7 +15,7 @@ $(BIN): $(OBJ) clean: rm -f *.o $(BIN) *~ - rm tmp.* + rm -f tmp.* # round trip the executable through compression and de-compression as a brief test test: cp $(BIN) tmp.in; ./gbcompress -v tmp.in tmp.cmp; ./gbcompress -v -d tmp.cmp tmp.dcmp; diff -s tmp.in tmp.dcmp
This webpage is intended to be an accessible preview of this repository. To get a fuller picture, clone it and use the git CLI.