summaryrefslogtreecommitdiff
path: root/libxsd/makefile
diff options
context:
space:
mode:
Diffstat (limited to 'libxsd/makefile')
-rw-r--r--libxsd/makefile20
1 files changed, 20 insertions, 0 deletions
diff --git a/libxsd/makefile b/libxsd/makefile
new file mode 100644
index 0000000..7024fef
--- /dev/null
+++ b/libxsd/makefile
@@ -0,0 +1,20 @@
+# file : libxsd/makefile
+# author : Boris Kolpackov <boris@codesynthesis.com>
+# copyright : Copyright (c) 2005-2009 Code Synthesis Tools CC
+# license : GNU GPL v2 + exceptions; see accompanying LICENSE file
+
+include $(dir $(lastword $(MAKEFILE_LIST)))../build/bootstrap.make
+
+install := $(out_base)/.install
+
+.PHONY: $(install)
+
+$(install):
+ $(call install-dir,$(src_base)/xsd,$(install_inc_dir)/xsd)
+ $(call install-data,$(src_base)/FLOSSE,$(install_doc_dir)/libxsd/FLOSSE)
+ $(call install-data,$(src_base)/GPLv2,$(install_doc_dir)/libxsd/GPLv2)
+ $(call install-data,$(src_base)/LICENSE,$(install_doc_dir)/libxsd/LICENSE)
+ $(call install-data,$(src_base)/README,$(install_doc_dir)/libxsd/README)
+
+
+$(call include,$(bld_root)/install.make)