diff options
Diffstat (limited to 'pixel-client')
-rw-r--r-- | pixel-client/makefile | 6 |
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 |