diff options
author | Nguyễn Gia Phong <mcsinyx@disroot.org> | 2023-03-04 19:58:06 +0900 |
---|---|---|
committer | Nguyễn Gia Phong <mcsinyx@disroot.org> | 2023-03-04 19:58:06 +0900 |
commit | 006bc8235e57f04980e2f641fb2ddd91e0d57499 (patch) | |
tree | 1e8364eec0b05b39f74de539549dc5e8323a29a7 /Makefile | |
parent | 320feb3eae1a5eb3beea38a381ff153c5e6eb190 (diff) | |
download | hybring-006bc8235e57f04980e2f641fb2ddd91e0d57499.tar.gz |
Parse CLI arguments
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..60867aa --- /dev/null +++ b/Makefile @@ -0,0 +1,34 @@ +# Makefile for hybring +# Copyright (C) 2023 Nguyễn Gia Phong +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as published +# by the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program 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 Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see <https://www.gnu.org/licenses/>. + +SHELL = /bin/sh +PREFIX ?= /usr/local + +.PHONY: man all clean install uninstall + +all: bin + +bin: $(wildcard src/*.cr) + crystal build -o hybring src/cli.cr + +clean: + rm hybring + +install: all + install -Dm 755 hybring ${DESTDIR}${PREFIX}/bin/hybring + +uninstall: + rm ${DESTDIR}${PREFIX}/bin/hybring |