aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
blob: 76b842b6a84a49cc8e98115d79f3766a83513bff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
ifeq ($(TARGET_DIR_BIN), )
    TARGET_DIR_BIN := /usr/local/bin
endif

install:
	mkdir -p $(TARGET_DIR_BIN)
	ln -sf $(shell pwd)/bin/lkp $(TARGET_DIR_BIN)/lkp

.PHONY: doc
doc:
	lkp gen-doc > ./doc/tests.md

tests/%.md: tests/%.yaml
	lkp gen-doc $<