mirror of
https://github.com/sobolevn/git-secret
synced 2024-10-31 21:20:29 +00:00
24 lines
427 B
Makefile
24 lines
427 B
Makefile
# Makefile
|
|
#
|
|
# bats-core manpages
|
|
#
|
|
RONN := ronn -W
|
|
PAGES := bats.1 bats.7
|
|
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
|
|
$(RONN) --date=$(ISOFMT) --manual=$(MANUAL) --organization=$(ORG) --roff $<
|
|
|
|
bats.7: bats.7.ronn
|
|
$(RONN) --date=$(ISOFMT) --manual=$(MANUAL) --organization=$(ORG) --roff $<
|
|
|
|
clean:
|
|
$(RM) $(PAGES)
|