From c6453ddc9d680a9bff646e25a7e5d1c96946037f Mon Sep 17 00:00:00 2001 From: Arun Isaac Date: Sat, 5 Feb 2022 12:59:01 +0530 Subject: Initial commit --- Makefile | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 Makefile (limited to 'Makefile') 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 +# +# 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 . + +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) -- cgit v1.2.3