diff options
Diffstat (limited to 'docs/USD.doc/exref/Makefile')
-rw-r--r-- | docs/USD.doc/exref/Makefile | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/docs/USD.doc/exref/Makefile b/docs/USD.doc/exref/Makefile new file mode 100644 index 000000000000..11b5423607e7 --- /dev/null +++ b/docs/USD.doc/exref/Makefile @@ -0,0 +1,17 @@ +# @(#)Makefile 8.8 (Berkeley) 10/10/96 + +ROFF= groff +TBL= tbl + +all: exref.ps summary.ps + +exref.ps: ex.rm + ${TBL} ex.rm | ${ROFF} -ms > $@ + chmod 444 $@ + +summary.ps: ex.summary + ${TBL} ex.summary | ${ROFF} -ms > $@ + chmod 444 $@ + +clean: + rm -f exref.ps summary.ps |