22 lines
335 B
Makefile
22 lines
335 B
Makefile
|
CWD = $(shell pwd)
|
||
|
|
||
|
define HELP_TEXT
|
||
|
Welcome to obkit!
|
||
|
|
||
|
Targets:
|
||
|
help provides help text
|
||
|
test run tests
|
||
|
legal prepends legal header to source code
|
||
|
|
||
|
endef
|
||
|
export HELP_TEXT
|
||
|
|
||
|
help:
|
||
|
@echo "$$HELP_TEXT"
|
||
|
|
||
|
# actual targets
|
||
|
|
||
|
legal: .legal
|
||
|
.legal:
|
||
|
addlicense -f ./legal/header.txt -skip yaml -skip yml .
|