diff options
author | Constantin Michael <constantin@codesynthesis.com> | 2011-09-05 11:54:16 +0200 |
---|---|---|
committer | Constantin Michael <constantin@codesynthesis.com> | 2011-09-05 11:54:16 +0200 |
commit | f024d16b9c78d683baa5d87b6e92b3d79a1f3300 (patch) | |
tree | 0f2c114c2d046a4abe1fe582f34d18b08f8cc2c0 /makefile | |
parent | db57fa8ca484a677350299e691f0f6ba721904c8 (diff) |
Add initial development infrastructure
Diffstat (limited to 'makefile')
-rw-r--r-- | makefile | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/makefile b/makefile new file mode 100644 index 0000000..4513ec1 --- /dev/null +++ b/makefile @@ -0,0 +1,36 @@ +# file : makefile +# author : Constantin Michael <constantin@codesynthesis.com> +# copyright : Copyright (c) 2009-2011 Code Synthesis Tools CC +# license : ODB NCUEL; see accompanying LICENSE file + +include $(dir $(lastword $(MAKEFILE_LIST)))build/bootstrap.make + +dirs := odb/oracle + +default := $(out_base)/ +dist := $(out_base)/.dist +clean := $(out_base)/.clean + +$(default): $(addprefix $(out_base)/,$(addsuffix /,$(dirs))) + +$(dist): export dirs := $(dirs) +$(dist): export docs := LICENSE README NEWS version +$(dist): data_dist := INSTALL libodb-oracle-vc9.sln libodb-oracle-vc10.sln +$(dist): exec_dist := bootstrap +$(dist): export extra_dist := $(data_dist) $(exec_dist) +$(dist): export version = $(shell cat $(src_root)/version) + +$(dist): $(addprefix $(out_base)/,$(addsuffix /.dist,$(dirs))) + $(call dist-data,$(docs) $(data_dist) libodb-oracle.pc.in) + $(call dist-exec,$(exec_dist)) + $(call dist-dir,m4) + $(call meta-automake) + $(call meta-autoconf) + +$(clean): $(addprefix $(out_base)/,$(addsuffix /.clean,$(dirs))) + +$(call include,$(bld_root)/dist.make) +$(call include,$(bld_root)/meta/automake.make) +$(call include,$(bld_root)/meta/autoconf.make) + +$(foreach d,$(dirs),$(call import,$(src_base)/$d/makefile)) |