aboutsummaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2014-02-25 09:32:50 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2014-02-25 09:32:50 +0200
commit74ab36afa2413fd3fe22a1c450cf458dc6c927ce (patch)
tree688c1365b8231e8b81212b2e056761ecafbba017 /makefile
parentd6b8a7cfd02827493a1935d592ebc7e63a1fc321 (diff)
Add support for not cleaning generated files (cli, doc)
Diffstat (limited to 'makefile')
-rw-r--r--makefile6
1 files changed, 2 insertions, 4 deletions
diff --git a/makefile b/makefile
index b69e892..337dd01 100644
--- a/makefile
+++ b/makefile
@@ -11,7 +11,6 @@ install := $(out_base)/.install
dist := $(out_base)/.dist
dist-win := $(out_base)/.dist-win
clean := $(out_base)/.clean
-cleandoc := $(out_base)/.cleandoc
# Build.
@@ -87,9 +86,8 @@ $(dist-win): $(dist-common) \
$(clean): $(out_base)/xsde/.clean \
$(out_base)/libxsde/.clean \
$(out_base)/tests/.clean \
- $(out_base)/examples/.clean
-
-$(cleandoc): $(out_base)/doc/.cleandoc
+ $(out_base)/examples/.clean \
+ $(out_base)/doc/.clean
$(call include,$(bld_root)/install.make)