-
Notifications
You must be signed in to change notification settings - Fork 73
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add Makefile #41
Add Makefile #41
Conversation
Hi @SuperSandro2000, I was going to take care of that but you did it first ^^. Allow me to comment on some suggestions.
PREFIX ?= /usr/local
mandir := $(DESTDIR)$(PREFIX)/man
man1dir := $(mandir)/man1
bindir := $(DESTDIR)$(PREFIX)/bin
The next two suggestions are just my preference so fell free to ignore those totally:
|
Also, you didn't remove |
I just copied that from my default Makefile. Changed all the things you requested. |
Thanks for the quick fix! You are missing a |
@lyknode Added that |
Ah, we forgot the |
The manpage is currently tracked in git and removing it would cause changes to the cwd. When the manpage is converted to troff we don't need the generation or clean. |
As per last comment on #38, the manpage would be removed and the markdown kept. But you are right, the |
No description provided.