diff options
author | Nick White <git@njw.name> | 2022-03-28 11:24:16 +0100 |
---|---|---|
committer | Nick White <git@njw.name> | 2022-03-28 11:24:16 +0100 |
commit | af8c39acb0b7fb7ae04fd668fcf99b8b3ddc600f (patch) | |
tree | cf3eaf15e752c2eea01270a417041e4ec973bfa4 | |
parent | 4b4c1106f32bda837b03bf474934bc4fcf69d19e (diff) |
rescribe: add make clean rule
-rw-r--r-- | cmd/rescribe/makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/cmd/rescribe/makefile b/cmd/rescribe/makefile index a40dce3..ae92dda 100644 --- a/cmd/rescribe/makefile +++ b/cmd/rescribe/makefile @@ -60,3 +60,6 @@ dist/windows/rescribe.exe: build/windows/rescribe-bin.exe mkdir -p dist/windows CC="x86_64-w64-mingw32-gcc" fyne package --name Rescribe --exe build/windows/rescribe-bin.exe --os windows --icon icon.png mv rescribe.exe $@ + +clean: + rm -rf dist build |