Skip to content

Commit

Permalink
Adding some more chapters and examples.
Browse files Browse the repository at this point in the history
  • Loading branch information
happi committed Mar 26, 2017
1 parent a33ac98 commit 1cbb0d6
Show file tree
Hide file tree
Showing 20 changed files with 4,765 additions and 778 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,6 @@ rel/example_project
git-log.xml
book-revhistory.xml
beam-book-from-ab.xml
beam-book.pdf
beam-book.pdf
opcodes_doc.asciidoc
.#.gitignore
19 changes: 14 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,16 @@ adocs = book.asciidoc \
preface.asciidoc \
introduction.asciidoc \
compiler.asciidoc \
processes.asciidoc
processes.asciidoc \
calls.asciidoc \
type_system.asciidoc \
beam_internal_instructions.asciidoc \
memory.asciidoc \
ap-beam_instructions.asciidoc \
opcodes_doc.asciidoc
# beam.asciidoc \
# beam_modules.asciidoc \
# type_system.asciidoc \
# memory.asciidoc \
# erts-book.asciidoc \
# ap-beam_instructions.asciidoc \
# opcodes_doc.asciidoc


all: beam-book.pdf
Expand All @@ -33,6 +35,13 @@ beam-book.pdf: beam-book-from-ab.xml book-revhistory.xml
# index.html: *.asciidoc
# asciidoc -o index.html -a icons -a toc2 book.asciidoc

code/book/ebin/generate_op_doc.beam: code/book/src/generate_op_doc.erl
erlc -o $@ $<

opcodes_doc.asciidoc: genop.tab code/book/ebin/generate_op_doc.beam
erl -noshell -s generate_op_doc from_shell genop.tab opcodes_doc.asciidoc


# generate_op_doc.beam: generate_op_doc.erl
# erlc generate_op_doc.erl

Expand Down
Loading

0 comments on commit 1cbb0d6

Please sign in to comment.