diff options
Diffstat (limited to 'doc/Makefile')
| -rw-r--r-- | doc/Makefile | 8 | 
1 files changed, 7 insertions, 1 deletions
diff --git a/doc/Makefile b/doc/Makefile index fb2dc5d..a27e322 100644 --- a/doc/Makefile +++ b/doc/Makefile @@ -1,11 +1,17 @@  # To rebuild the docs change this  XSDDOC = /opt/xsddoc/bin/xsddoc +RTFX = ../src/rtfx  # Various settings  XSD = rtfx.xsd  TITLE = "RTFX Output Format" + +.SUFFIXES: .xml .rtf +  all:  	mkdir -p xsddoc -	$(XSDDOC) -o xsddoc -t $(TITLE) -g $(XSD)
\ No newline at end of file +	$(XSDDOC) -o xsddoc -t $(TITLE) -g $(XSD) +	$(RTFX) -p sample.rtf sample_p.xml +	$(RTFX) sample.rtf sample.xml  | 
