zpu: wip on DAG to DAG
[llvm/zpu.git] / docs / tutorial / Makefile
blob9082ad4d8575ef9a5f19694f19b9df8869dc37ab
1 ##===- docs/tutorial/Makefile ------------------------------*- Makefile -*-===##
3 # The LLVM Compiler Infrastructure
5 # This file is distributed under the University of Illinois Open Source
6 # License. See LICENSE.TXT for details.
8 ##===----------------------------------------------------------------------===##
10 LEVEL := ../..
11 include $(LEVEL)/Makefile.common
13 HTML := $(wildcard $(PROJ_SRC_DIR)/*.html)
14 EXTRA_DIST := $(HTML) index.html
15 HTML_DIR := $(DESTDIR)$(PROJ_docsdir)/html/tutorial
17 install-local:: $(HTML)
18 $(Echo) Installing HTML Tutorial Documentation
19 $(Verb) $(MKDIR) $(HTML_DIR)
20 $(Verb) $(DataInstall) $(HTML) $(HTML_DIR)
21 $(Verb) $(DataInstall) $(PROJ_SRC_DIR)/index.html $(HTML_DIR)
23 uninstall-local::
24 $(Echo) Uninstalling Tutorial Documentation
25 $(Verb) $(RM) -rf $(HTML_DIR)
27 printvars::
28 $(Echo) "HTML : " '$(HTML)'