Author: Winston Weinert <git@winny.tech>
build: ignore build artifacts and tweak Makefile to install
.gitignore | 3 +++ Makefile | 4 ++--
diff --git a/.gitignore b/.gitignore index 378eac25d311703f3f2cd456d8036da525cd0366..62250bd683ab3effbf1eb10689b07fda8ce5d4a6 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,4 @@ +.build build +*.o +/seamus diff --git a/Makefile b/Makefile index cbecbee725cec1c1fb4ba109e62a4c9fcf99c0d8..bc8603744723faa8e61210a2f2b71145c8602b06 100644 --- a/Makefile +++ b/Makefile @@ -26,7 +26,7 @@ install: all mkdir -p \ $(DESTDIR)$(BINDIR) \ - $(DESTDIR)$(SHAREDIR)/seamus \ - install -Dm755 seamus $(DESTDIR)$(BINDIR)/seamus + $(DESTDIR)$(SHAREDIR)/seamus + install -m755 seamus $(DESTDIR)$(BINDIR)/seamus .PHONY: clean distclean install