diff options
author | johannst <johannes.stoelp@gmail.com> | 2021-06-09 20:13:21 +0200 |
---|---|---|
committer | johannst <johannes.stoelp@gmail.com> | 2021-06-09 20:13:21 +0200 |
commit | e614c3d4318d9839744ad6074ad82fb84490cd5e (patch) | |
tree | 962065c6d18019a42e31e1f9e43d373e5a401f9a /lib | |
parent | 860d937c5680a58ac1437a3daba93496ecc3ad78 (diff) | |
download | matcha-threads-e614c3d4318d9839744ad6074ad82fb84490cd5e.tar.gz matcha-threads-e614c3d4318d9839744ad6074ad82fb84490cd5e.zip |
make: use builtin variables
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
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) |