diff options
author | Arun Isaac | 2022-02-05 12:59:01 +0530 |
---|---|---|
committer | Arun Isaac | 2022-02-05 12:59:01 +0530 |
commit | c6453ddc9d680a9bff646e25a7e5d1c96946037f (patch) | |
tree | e77a9d5008a5b1c3c29e02eef3ca06f785276738 /Makefile | |
download | tissue-c6453ddc9d680a9bff646e25a7e5d1c96946037f.tar.gz tissue-c6453ddc9d680a9bff646e25a7e5d1c96946037f.tar.lz tissue-c6453ddc9d680a9bff646e25a7e5d1c96946037f.zip |
Initial commit
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..cc864c8 --- /dev/null +++ b/Makefile @@ -0,0 +1,32 @@ +# tissue --- Text based issue tracker +# Copyright © 2022 Arun Isaac <arunisaac@systemreboot.net> +# +# This file is part of tissue. +# +# tissue is free software: you can redistribute it and/or modify it +# under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# tissue is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY +# or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public +# License for more details. +# +# You should have received a copy of the GNU General Public License +# along with tissue. If not, see <https://www.gnu.org/licenses/>. + +prefix ?= /usr/local +exec_prefix ?= $(prefix) +bindir ?= $(exec_prefix)/bin + +scripts = $(wildcard bin/*) + +.PHONY: all check install + +all: ; + +check: ; + +install: $(scripts) + install -D $^ --target-directory $(bindir) |