summaryrefslogtreecommitdiff
path: root/pixel-client
diff options
context:
space:
mode:
authorLia Lenckowski <lialenck@protonmail.com>2024-09-25 22:24:35 +0200
committerLia Lenckowski <lialenck@protonmail.com>2024-09-25 22:25:00 +0200
commit978794cf1d255cf4ad4569e696ddcbd91abb0a7c (patch)
tree2715ad35af38ac7813f999b8797bcb880b52b72c /pixel-client
parent7bac98ee918ea9cee5eea3d446b2f204032fa03b (diff)
downloadhurrycurry-978794cf1d255cf4ad4569e696ddcbd91abb0a7c.tar
hurrycurry-978794cf1d255cf4ad4569e696ddcbd91abb0a7c.tar.bz2
hurrycurry-978794cf1d255cf4ad4569e696ddcbd91abb0a7c.tar.zst
Replace usages of rm with $(RM) in makefiles
Diffstat (limited to 'pixel-client')
-rw-r--r--pixel-client/makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/pixel-client/makefile b/pixel-client/makefile
index 764a4564..fc11d613 100644
--- a/pixel-client/makefile
+++ b/pixel-client/makefile
@@ -36,9 +36,9 @@ tex_pack: assets/atlas.ta
tex_import: $(TEXTURES_IMPORT_PNG)
tex_export: $(TEXTURES_PNG) $(SPRITES_PNG) assets/atlas.png
clean:
- rm -f $(PNG)
- rm -fr assets/sprites
- rm -f assets/atlas.ta assets/atlas.meta.csv
+ $(RM) $(PNG)
+ $(RM) -r assets/sprites
+ $(RM) assets/atlas.ta assets/atlas.meta.csv
$(CLIENT): $(shell find src -type f) $(CLIENT_DEPS)
cargo +nightly build --release --bin pixelcurry