# 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 . SHELL = /bin/sh PREFIX ?= /usr/local .PHONY: man all clean check install uninstall all: hybring hybring: $(wildcard src/*.cr) crystal build -o hybring src/cli.cr clean: rm hybring check: $(wildcard spec/*.cr) crystal spec --order random install: all install -Dm 755 hybring ${DESTDIR}${PREFIX}/bin/hybring uninstall: rm ${DESTDIR}${PREFIX}/bin/hybring