2021-05-03 12:43:04 +00:00
|
|
|
# Makefile
|
|
|
|
#
|
|
|
|
# bats-core manpages
|
|
|
|
#
|
|
|
|
RONN := ronn -W
|
2019-03-04 23:52:53 +00:00
|
|
|
PAGES := bats.1 bats.7
|
2021-05-03 12:43:04 +00:00
|
|
|
ORG := bats-core
|
|
|
|
MANUAL := 'Bash Automated Testing System'
|
|
|
|
ISOFMT := $(shell date -I)
|
|
|
|
RM := rm -f
|
|
|
|
|
|
|
|
.PHONY: all clean
|
2019-03-04 23:52:53 +00:00
|
|
|
|
|
|
|
all: $(PAGES)
|
|
|
|
|
|
|
|
bats.1: bats.1.ronn
|
2021-05-03 12:43:04 +00:00
|
|
|
$(RONN) --date=$(ISOFMT) --manual=$(MANUAL) --organization=$(ORG) --roff $<
|
2019-03-04 23:52:53 +00:00
|
|
|
|
|
|
|
bats.7: bats.7.ronn
|
2021-05-03 12:43:04 +00:00
|
|
|
$(RONN) --date=$(ISOFMT) --manual=$(MANUAL) --organization=$(ORG) --roff $<
|
|
|
|
|
|
|
|
clean:
|
|
|
|
$(RM) $(PAGES)
|