use rm instead of $(RM) for clean targets

OpenBSD bsdmake does not define $(RM) like GNU Make.
As it's highly unlikely that anyone will ever want to override rm or has
as system where rm is not in the path, let us just use the command
directly for the sake of simplicity.

Signed-off-by: Klaus Goger <klaus.goger@theobroma-systems.com>
This commit is contained in:
Klaus Goger 2017-10-10 16:41:57 +02:00
parent a39ebdde05
commit 35a265bc44

View File

@ -18,4 +18,4 @@ rkdeveloptool_SOURCES = main.cpp \
rkdeveloptool_LDADD = $(LIBUSB1_LIBS)
clean-local::
$(RM) -fr log
rm -fr log