add undo-linux-compatible (git reset --head HEAD and remove renamed files)
This commit is contained in:
parent
fb99c04a5b
commit
a34c19e99d
1 changed files with 7 additions and 1 deletions
8
Makefile
8
Makefile
|
@ -1,4 +1,4 @@
|
|||
.PHONY: release release-with-assets debug debug-with-assets clean mrproper pull-emu48plus pull-assets keystore linux-compatible
|
||||
.PHONY: release release-with-assets debug debug-with-assets clean mrproper pull-emu48plus pull-assets keystore linux-compatible undo-linux-compatible
|
||||
|
||||
release:
|
||||
./gradlew assembleRelease assembleReleaseUnitTest
|
||||
|
@ -23,6 +23,12 @@ mrproper: clean
|
|||
linux-compatible:
|
||||
zsh ./make-linux-compatible.sh
|
||||
|
||||
undo-linux-compatible:
|
||||
git reset --hard HEAD
|
||||
rm -f app/src/main/cpp/core/emu48.c
|
||||
rm -f app/src/main/cpp/core/emu48.h
|
||||
rm -f app/src/main/cpp/core/opcodes.h
|
||||
|
||||
pull-emu48plus:
|
||||
zsh ./pull-emu48plus-sources.sh
|
||||
|
||||
|
|
Loading…
Reference in a new issue