dpgpid/Makefile

27 lines
417 B
Makefile
Raw Normal View History

2022-05-21 03:37:51 +02:00
MYOS ?= ../myos
-include $(MYOS)/make/include.mk
2022-05-17 03:47:31 +02:00
2022-05-13 19:40:16 +02:00
PREFIX ?= /usr/local
BINDIR ?= $(PREFIX)/bin
.PHONY: all default install shellcheck-% shellspec-% tests uninstall
default: tests
2022-05-16 22:34:47 +02:00
all: install tests
2022-05-13 19:40:16 +02:00
install:
mkdir -p "$(BINDIR)"
install dpgpid "$(BINDIR)/dpgpid"
shellcheck-%:
2022-05-21 03:37:51 +02:00
shellcheck $*/*.sh
2022-05-13 19:40:16 +02:00
shellspec-%:
shellspec -f tap $*
tests: shellcheck-specs shellspec-specs
uninstall:
rm -f "$(BINDIR)/dpgpid"