Skip to content

Commit

Permalink
Merge pull request #190 from openshmem-org/osh_spec_next
Browse files Browse the repository at this point in the history
Merge OpenSHMEM 1.4 (osh_spec_next) into master
  • Loading branch information
jdinan authored Dec 14, 2017
2 parents 3cc5ef8 + 321cf00 commit bc79f9a
Show file tree
Hide file tree
Showing 342 changed files with 5,972 additions and 23,912 deletions.
9 changes: 9 additions & 0 deletions .gitignore
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
19 changes: 19 additions & 0 deletions .travis.yml
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
19 changes: 19 additions & 0 deletions Makefile
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

38 changes: 0 additions & 38 deletions _deprecated_sources/C/Makefile

This file was deleted.

200 changes: 0 additions & 200 deletions _deprecated_sources/C/all2all.c

This file was deleted.

Loading

0 comments on commit bc79f9a

Please sign in to comment.