From e614c3d4318d9839744ad6074ad82fb84490cd5e Mon Sep 17 00:00:00 2001 From: johannst Date: Wed, 9 Jun 2021 20:13:21 +0200 Subject: make: use builtin variables --- lib/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/Makefile') diff --git a/lib/Makefile b/lib/Makefile index aedd1d4..ab51aa8 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -34,7 +34,7 @@ libmatcha.a: $(OBJS) $(AS) -c -o $@ $(ASFLAGS) $< clean: - rm -f $(OBJS) $(DEPS) - rm -f libmatcha.a + $(RM) $(OBJS) $(DEPS) + $(RM) libmatcha.a -include $(DEPS) -- cgit v1.2.3