blob: 43c308e53422512cbe7078c1c9e5b62a42545bcb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
%.html : %.xml
xml2rfc $^ $@
%.txt : %.xml
xml2rfc $^ $@
PAPERS = draft-gsenger-secure-anycast-tunneling-protocol-02.html \
draft-gsenger-secure-anycast-tunneling-protocol-02.txt
all: doc
doc: $(PAPERS)
clean:
rm -f $(PAPERS)
|