aboutsummaryrefslogtreecommitdiff
path: root/test-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 /test-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 'test-client')
-rw-r--r--test-client/makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/test-client/makefile b/test-client/makefile
index 72a04791..b6c0438d 100644
--- a/test-client/makefile
+++ b/test-client/makefile
@@ -17,8 +17,8 @@
all: main.js locales
locales: $(patsubst ../locale/%.ini,locale/%.json,$(wildcard ../locale/*.ini))
clean:
- rm main.js
- rm -rf locale
+ $(RM) main.js
+ $(RM) -r locale
main.js: main.ts $(wildcard *.ts)
esbuild $< --bundle --outfile=$@ --target=esnext --format=esm