From 707cc94fe52463870a9c6c8e2e66eaaa389e601d Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Tue, 24 Feb 2009 15:16:26 +0200 Subject: Start tracking XSD/e with git after version 3.0.0 --- makefile | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 makefile (limited to 'makefile') diff --git a/makefile b/makefile new file mode 100644 index 0000000..3f83dda --- /dev/null +++ b/makefile @@ -0,0 +1,43 @@ +# file : makefile +# author : Boris Kolpackov +# 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 + +default := $(out_base)/ +test := $(out_base)/.test +install := $(out_base)/.install +clean := $(out_base)/.clean + +.PHONY: $(default) $(test) $(install) $(clean) + +$(default): $(out_base)/xsde/ \ + $(out_base)/libxsde/ \ + $(out_base)/tests/ \ + $(out_base)/examples/ + +$(test): $(out_base)/tests/.test + +$(install): $(out_base)/xsde/.install \ + $(out_base)/libxsde/.install \ + $(out_base)/documentation/.install + $(call install-data,$(src_base)/FLOSSE,$(install_doc_dir)/xsde/FLOSSE) + $(call install-data,$(src_base)/GPLv2,$(install_doc_dir)/xsde/GPLv2) + $(call install-data,$(src_base)/LICENSE,$(install_doc_dir)/xsde/LICENSE) + $(call install-data,$(src_base)/NEWS,$(install_doc_dir)/xsde/NEWS) + $(call install-data,$(src_base)/README,$(install_doc_dir)/xsde/README) + + +$(clean): $(out_base)/xsde/.clean \ + $(out_base)/libxsde/.clean \ + $(out_base)/tests/.clean \ + $(out_base)/examples/.clean + +$(call include,$(bld_root)/install.make) + +$(call import,$(src_base)/xsde/makefile) +$(call import,$(src_base)/libxsde/makefile) +$(call import,$(src_base)/tests/makefile) +$(call import,$(src_base)/examples/makefile) +$(call import,$(src_base)/documentation/makefile) -- cgit v1.1