Fix call to rm in examples/Makefile 'clean' rule

This commit is contained in:
XANTRONIX Development 2020-09-06 00:52:14 -04:00 committed by XANTRONIX Industrial
parent a350602e0d
commit 821b76551c

View file

@ -15,4 +15,4 @@ $(EXAMPLES): %: %.c
$(CC) $(CFLAGS) $< -o $@ $(LDFLAGS) $(CC) $(CFLAGS) $< -o $@ $(LDFLAGS)
clean: clean:
$(RM) $(EXAMPLES) $(RM) -f $(EXAMPLES)