Makefile: use proper perms on install
This commit is contained in:
parent
87c3e4928a
commit
3cfb0478dd
1 changed files with 1 additions and 1 deletions
2
Makefile
2
Makefile
|
@ -14,7 +14,7 @@ $(TARGET): $(TARGET).cpp
|
||||||
$(CC) $(CFLAGS) -o $(TARGET) $(DEPS) $(TARGET).cpp $(LIBS)
|
$(CC) $(CFLAGS) -o $(TARGET) $(DEPS) $(TARGET).cpp $(LIBS)
|
||||||
|
|
||||||
install: $(TARGET)
|
install: $(TARGET)
|
||||||
install -m 644 $(TARGET) $(DESTDIR)$(PREFIX)/bin/
|
install -m 755 $(TARGET) $(DESTDIR)$(PREFIX)/bin/
|
||||||
|
|
||||||
uninstall:
|
uninstall:
|
||||||
rm -f $(DESTDIR)$(PREFIX)/bin/$(TARGET)
|
rm -f $(DESTDIR)$(PREFIX)/bin/$(TARGET)
|
||||||
|
|
Loading…
Reference in a new issue