Compare commits

...

2 Commits
v1.0 ... master

Author SHA1 Message Date
ccccacd88d Makefile: Create install directories.
Sometimes these directories may not exist.
2024-11-04 16:52:57 +01:00
3157d98ea1 Update To-Do list. 2024-11-04 16:39:50 +01:00
2 changed files with 6 additions and 2 deletions

View File

@ -53,5 +53,7 @@ distclean: clean
$(RM) menu-helper
install: menu-helper menu-helper.1.gz
install -d $(PREFIX)/bin
install -m 755 menu-helper $(PREFIX)/bin/
install -d $(PREFIX)/share/man/man1
install -m 644 menu-helper.1.gz $(PREFIX)/share/man/man1/

View File

@ -10,5 +10,7 @@
- [X] Name
- [X] Description
- [ ] Add import/export functionality.
- [ ] Allow for writing description in editor.
- [ ] v1.1
- [ ] Add import/export functionality.
- [ ] Allow for writing description in editor.
- [ ] Add examples to man page.