Fix mistake rm command

This commit is contained in:
x3 2021-05-23 18:23:39 +02:00
parent 5dfc8f80ce
commit b9465c916e
Signed by: x3
GPG Key ID: 7E9961E8AD0E240E
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ install: $(PROGNAME)
install -s -- $< $(InstallPrefix)/$(PROGNAME)
uninstall:
rm -r -- $(InstallPrefix)/$(PROGNAME)
rm -f -- $(InstallPrefix)/$(PROGNAME)
$(PROGNAME): $(OBJS)
$(CC) -o $@ $+ $(CFLAGS) $(CPPFLAGS)