-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #190 from openshmem-org/osh_spec_next
Merge OpenSHMEM 1.4 (osh_spec_next) into master
- Loading branch information
Showing
342 changed files
with
5,972 additions
and
23,912 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,9 @@ | ||
chappage.txt | ||
main_spec.aux | ||
main_spec.idx | ||
main_spec.ilg | ||
main_spec.ind | ||
main_spec.log | ||
main_spec.out | ||
main_spec.pdf | ||
main_spec.toc |
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,19 @@ | ||
sudo: required | ||
dist: trusty | ||
|
||
addons: | ||
apt: | ||
packages: | ||
- texlive-latex-base | ||
- texlive-latex-recommended | ||
- texlive-latex-extra | ||
- texlive-generic-recommended | ||
- latex-xcolor | ||
- texlive-fonts-recommended | ||
- texlive-fonts-extra | ||
|
||
before_install: | ||
install: | ||
script: | ||
- make LATEXOPT=-halt-on-error | ||
- make clean |
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,19 @@ | ||
TARGET = main_spec | ||
SOURCES = $(shell find . -name '*.tex' -print) | ||
FIGURES = $(shell find figures -name '*.pdf' -print) | ||
EXAMPLES = $(shell find example_code -name '*.[c,f]*' -print) | ||
|
||
.PHONY: all | ||
all: ${TARGET}.pdf | ||
|
||
${TARGET}.pdf: ${SOURCES} ${FIGURES} ${EXAMPLES} | ||
pdflatex $(LATEXOPT) ${TARGET} | ||
makeindex ${TARGET} | ||
pdflatex $(LATEXOPT) ${TARGET} | ||
makeindex ${TARGET} | ||
pdflatex $(LATEXOPT) ${TARGET} | ||
|
||
.PHONY: clean | ||
clean: | ||
rm -f ${TARGET}.{log,aux,ps,dvi,bbl,blg,log,idx,out,toc,pdf,out} chappage.txt | ||
|
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.