diff options
author | EuAndreh <eu@euandre.org> | 2021-01-21 22:03:10 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2021-01-21 22:03:10 -0300 |
commit | 6d5fd6dd0a1c0a927876f7786c406ce19c78c20e (patch) | |
tree | f4d873b8b33d4acf9fbd5c9c34d490fda5fe9e73 /Makefile | |
parent | Add COPYING (diff) | |
download | remembering-6d5fd6dd0a1c0a927876f7786c406ce19c78c20e.tar.gz remembering-6d5fd6dd0a1c0a927876f7786c406ce19c78c20e.tar.xz |
Add current working files
Diffstat (limited to '')
-rw-r--r-- | Makefile | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..96cdace --- /dev/null +++ b/Makefile @@ -0,0 +1,15 @@ +.POSIX: +PREFIX = /usr/local + +all: + +install: + install -d $(DESTDIR)$(PREFIX)/bin + install -m 755 remembering $(DESTDIR)$(PREFIX)/bin/ + install -d $(DESTDIR)$(PREFIX)/share/man/man1 + install -m 644 remembering.1 $(DESTDIR)$(PREFIX)/share/man/man1/ + install -d $(DESTDIR)$(PREFIX)/share/man/man5 + install -m 644 remembering.5 $(DESTDIR)$(PREFIX)/share/man/man5/ + +check: + sh tests/all.sh |