diff options
author | Lukas Larsson <[email protected]> | 2012-07-18 21:16:00 +0200 |
---|---|---|
committer | Lukas Larsson <[email protected]> | 2012-07-19 15:39:44 +0200 |
commit | 88c8bfd614477085bfc9f878d3812a47d16f25d4 (patch) | |
tree | 884c0a0028021a0c5dd5c9243509b95f35a03da7 /lib/runtime_tools/doc/src/Makefile | |
parent | 0948779bd59c07653b157789c2edfd67892d3958 (diff) | |
download | otp-88c8bfd614477085bfc9f878d3812a47d16f25d4.tar.gz otp-88c8bfd614477085bfc9f878d3812a47d16f25d4.tar.bz2 otp-88c8bfd614477085bfc9f878d3812a47d16f25d4.zip |
Add DTRACE and SYSTEMTAP howtos as User Guide
Diffstat (limited to 'lib/runtime_tools/doc/src/Makefile')
-rw-r--r-- | lib/runtime_tools/doc/src/Makefile | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/lib/runtime_tools/doc/src/Makefile b/lib/runtime_tools/doc/src/Makefile index d240b287c3..51d93df418 100644 --- a/lib/runtime_tools/doc/src/Makefile +++ b/lib/runtime_tools/doc/src/Makefile @@ -43,9 +43,11 @@ XML_APPLICATION_FILES = ref_man.xml XML_REF3_FILES = dbg.xml dyntrace.xml erts_alloc_config.xml XML_REF6_FILES = runtime_tools_app.xml -XML_PART_FILES = part_notes.xml part_notes_history.xml +XML_PART_FILES = part_notes.xml part_notes_history.xml part.xml XML_CHAPTER_FILES = notes.xml notes_history.xml +GENERATED_XML_FILES = DTRACE.xml SYSTEMTAP.xml + BOOK_FILES = book.xml XML_FILES = \ @@ -78,6 +80,11 @@ DVIPS_FLAGS += # ---------------------------------------------------- # Targets # ---------------------------------------------------- +$(XML_FILES): $(GENERATED_XML_FILES) + +%.xml: $(ERL_TOP)/HOWTO/%.md $(ERL_TOP)/make/emd2exml + $(ERL_TOP)/make/emd2exml $< $@ + $(HTMLDIR)/%.gif: %.gif $(INSTALL_DATA) $< $@ |