Makefile: create destination directories in make install

This commit is contained in:
Andrew Ayer
2015-03-10 08:29:06 -07:00
parent 1b3f13643c
commit ede1461563

View File

@@ -26,6 +26,7 @@ clean:
rm -f *.o git-crypt
install: git-crypt
install -d $(DESTDIR)$(PREFIX)/bin/
install -m 755 git-crypt $(DESTDIR)$(PREFIX)/bin/
.PHONY: all clean install