-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 51b1062
Showing
34 changed files
with
18,087 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
https://github.com/cplusplus/networking-ts is the repository for the | ||
C++ Technical Specification "Extensions for Networking". | ||
|
||
The draft Technical Specification is found in the `src` directory | ||
and is written in LaTeX. There is a Makefile that can be used to compile | ||
the sources, or you can use the `latexmk` program e.g. `latexmk -pdf ts` will | ||
generate a PDF. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
*.aux | ||
ts.* | ||
!ts.tex |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
### -*- mode: makefile-gmake -*- | ||
|
||
# Note: If building on Mac OS X, and if you use MacPorts, the following ports | ||
# should be installed: | ||
# | ||
# texlive-latex | ||
# texlive-plain-extra | ||
# texlive-latex-recommended | ||
# texlive-latex-extra | ||
# texlive-fonts-recommended | ||
# texlive-fonts-extra | ||
# texlive-generic-recommended | ||
|
||
FIGURES = $(patsubst %.dot,%.pdf,$(wildcard *.dot)) | ||
|
||
TSPDF = pdflatex ts | grep -v "^Overfull" | ||
|
||
default: rebuild | ||
|
||
clean: | ||
rm -f *.aux *.idx *.ilg *.ind *.log *.lot *.lof *.tmp *.out *.toc ts.pdf | ||
|
||
refresh: | ||
$(TSPDF) | ||
|
||
rebuild: | ||
$(TSPDF) | ||
$(TSPDF) | ||
$(TSPDF) | ||
|
||
full: $(FIGURES) grammar xrefs reindex | ||
|
||
%.pdf: %.dot | ||
dot -o $@ -Tpdf $< | ||
|
||
grammar: | ||
sh ../tools/makegram | ||
|
||
xrefs: | ||
sh ../tools/makexref | ||
|
||
# reindex: | ||
# $(TSPDF) | ||
# $(TSPDF) | ||
# $(TSPDF) | ||
# makeindex generalindex | ||
# makeindex libraryindex | ||
# makeindex grammarindex | ||
# makeindex impldefindex | ||
# $(TSPDF) | ||
# $(TSPDF) | ||
|
||
### Makefile ends here |
Oops, something went wrong.