git-secret/vendor/bats-core/man/Makefile

24 lines
427 B
Makefile
Raw Normal View History

2021-05-03 12:43:04 +00:00
# Makefile
#
# bats-core manpages
#
RONN := ronn -W
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
all: $(PAGES)
bats.1: bats.1.ronn
2021-05-03 12:43:04 +00:00
$(RONN) --date=$(ISOFMT) --manual=$(MANUAL) --organization=$(ORG) --roff $<
bats.7: bats.7.ronn
2021-05-03 12:43:04 +00:00
$(RONN) --date=$(ISOFMT) --manual=$(MANUAL) --organization=$(ORG) --roff $<
clean:
$(RM) $(PAGES)