dpgpid/Makefile

24 lines
364 B
Makefile
Raw Normal View History

2022-05-13 19:40:16 +02:00
PREFIX ?= /usr/local
BINDIR ?= $(PREFIX)/bin
.PHONY: all default install shellcheck-% shellspec-% tests uninstall
default: tests
all: tests install
install:
mkdir -p "$(BINDIR)"
install dpgpid "$(BINDIR)/dpgpid"
shellcheck-%:
shellcheck $*/*
shellspec-%:
shellspec -f tap $*
tests: shellcheck-specs shellspec-specs
uninstall:
rm -f "$(BINDIR)/dpgpid"