Makefile: fix a bug

This commit is contained in:
Victor 2020-10-20 05:26:13 +03:00
parent ee771562a6
commit 65cc8bfabc

View File

@ -15,8 +15,8 @@ $(TARGET): $(SOURCE)
nimble uninstall -y argparse nimble uninstall -y argparse
install: $(TARGET) install: $(TARGET)
install -d $(DESTDIR)$(BINDIR) install -d $(BINDIR)
install -m 755 $< $(DESTDIR)$(BINDIR) install -m 755 $< $(BINDIR)
uninstall: uninstall:
rm $(BINDIR)/$(TARGET) rm $(BINDIR)/$(TARGET)