Skip to content

Commit

Permalink
Daily commit
Browse files Browse the repository at this point in the history
git-svn-id: file:///Users/avp/tmp/svn.20121212/LHPC/aff/trunk@131 65d2813f-f11f-0410-b17b-8647a28db151
  • Loading branch information
avp committed Aug 23, 2007
1 parent 5ec4f04 commit d45738a
Show file tree
Hide file tree
Showing 4 changed files with 233 additions and 130 deletions.
27 changes: 26 additions & 1 deletion COPYRIGHT
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2006 Massachusetts Institute of Technology
Copyright (c) 2007 Massachusetts Institute of Technology

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand All @@ -17,3 +17,28 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.


Parts of the library may be covered by the copyright below.

Copyright (C) 1991-2, RSA Data Security, Inc. Created 1991. All
rights reserved.

License to copy and use this software is granted provided that it
is identified as the "RSA Data Security, Inc. MD5 Message-Digest
Algorithm" in all material mentioning or referencing this software
or this function.

License is also granted to make and use derivative works provided
that such works are identified as "derived from the RSA Data
Security, Inc. MD5 Message-Digest Algorithm" in all material
mentioning or referencing the derived work.

RSA Data Security, Inc. makes no representations concerning either
the merchantability of this software or the suitability of this
software for any particular purpose. It is provided "as is"
without express or implied warranty of any kind.

These notices must be retained in any copies of any part of this
documentation and/or software.

1 change: 1 addition & 0 deletions TODO
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
- [done] The interface header building in lib/Makefile
- Documentation (Sergey)
-- add another level to the TOC, insert pagebreaks where needed.
- Configure
- Utilities
- Restrict node names to an XML-compatible subset (in waff-mkdir).
Expand Down
35 changes: 35 additions & 0 deletions docs/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
LATEX = latex
MAKEINDEX = makeindex
DVIPDFM = dvipdfm

.PHONY: all clean realclean

sources = aff_spec.tex
pdf = $(sources:%.tex=%.pdf)

all: $(pdf)

clean:
$(RM) $(sources:%.tex=%.aux)
$(RM) $(sources:%.tex=%.dvi)
$(RM) $(sources:%.tex=%.idx)
$(RM) $(sources:%.tex=%.ilg)
$(RM) $(sources:%.tex=%.ind)
$(RM) $(sources:%.tex=%.log)
$(RM) $(sources:%.tex=%.out)
$(RM) $(sources:%.tex=%.toc)

realclean: clean
$(RM) $(sources:%.tex=%.pdf)

$(pdf): %.pdf: %.dvi
$(DVIPDFM) $(@:%.pdf=%)

$(sources:%.tex=%.dvi): %.dvi: %.tex
$(LATEX) $(@:%.dvi=%)
$(LATEX) $(@:%.dvi=%)
$(LATEX) $(@:%.dvi=%)
$(MAKEINDEX) $(@:%.dvi=%)
$(LATEX) $(@:%.dvi=%)
$(LATEX) $(@:%.dvi=%)
$(LATEX) $(@:%.dvi=%)
Loading

0 comments on commit d45738a

Please sign in to comment.