aboutsummaryrefslogtreecommitdiff
path: root/odb/pgsql/makefile
blob: 6b3ffc3d9457adf4d53b355f4f04dc874dcd1348 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
# file      : odb/pgsql/makefile
# author    : Boris Kolpackov <boris@codesynthesis.com>
# author    : Constantin Michael <constantin@codesynthesis.com>
# copyright : Copyright (c) 2009-2011 Code Synthesis Tools CC
# license   : GNU GPL v2; see accompanying LICENSE file

include $(dir $(lastword $(MAKEFILE_LIST)))../../build/bootstrap.make

cxx :=                    \
connection.cxx            \
connection-factory.cxx    \
database.cxx              \
error.cxx                 \
exceptions.cxx            \
object-statements.cxx     \
statement.cxx             \
traits.cxx                \
transaction.cxx           \
transaction-impl.cxx      \
details/endian-traits.cxx \

cli_tun := details/options.cli
cxx_tun := $(cxx)
cxx_obj := $(addprefix $(out_base)/,$(cxx_tun:.cxx=.o) $(cli_tun:.cli=.o))
cxx_od  := $(cxx_obj:.o=.o.d)

odb_pgsql.l             := $(out_base)/odb-pgsql.l
odb_pgsql.l.cpp-options := $(out_base)/odb-pgsql.l.cpp-options

default := $(out_base)/
dist    := $(out_base)/.dist
clean   := $(out_base)/.clean

# Import.
#
$(call import,\
 $(scf_root)/import/cli/stub.make,\
 cli: cli,cli-rules: cli_rules)

$(call import,\
  $(scf_root)/import/libodb/stub.make,\
  l: odb.l,cpp-options: odb.l.cpp-options)

$(call import,\
  $(scf_root)/import/libpq/stub.make,\
  l: pq.l,\
  cpp-options: pq.l.cpp-options,\
  cpp-options-inline: pq_cpp_options)

# Build.
#
$(odb_pgsql.l): $(cxx_obj) $(odb.l) $(pq.l)
$(odb_pgsql.l.cpp-options): value := -I$(out_root) -I$(src_root) \
$(pq_cpp_options)
$(odb_pgsql.l.cpp-options): $(odb.l.cpp-options) $(pq.l.cpp-options)

$(cxx_obj) $(cxx_od): $(odb_pgsql.l.cpp-options) $(out_base)/details/config.h

genf := $(cli_tun:.cli=.hxx) $(cli_tun:.cli=.ixx) $(cli_tun:.cli=.cxx)
gen  := $(addprefix $(out_base)/,$(genf))

$(gen): $(cli)
$(gen): cli := $(cli)
$(gen): cli_options +=                   \
--long-usage                             \
--generate-specifier                     \
--generate-file-scanner                  \
--cli-namespace odb::pgsql::details::cli \
--guard-prefix LIBODB_PGSQL_DETAILS

$(out_base)/details/config.h:
	@echo '/* file      : odb/pgsql/details/config.h'                >$@
	@echo ' * author    : automatically generated'                  >>$@
	@echo ' */'                                                     >>$@
	@echo ''                                                        >>$@
	@echo '#ifndef ODB_PGSQL_DETAILS_CONFIG_H'                      >>$@
	@echo '#define ODB_PGSQL_DETAILS_CONFIG_H'                      >>$@
	@echo ''                                                        >>$@
	@echo '#endif /* ODB_PGSQL_DETAILS_CONFIG_H */'                 >>$@

$(call include-dep,$(cxx_od),$(cxx_obj),$(gen) $(out_base)/details/config.h)

# Convenience alias for default target.
#
$(out_base)/: $(odb_pgsql.l)

# Dist.
#
$(dist): sources_dist := $(cxx)
$(dist): export sources := $(sources_dist) $(cli_tun:.cli=.cxx)
$(dist): headers_dist = $(subst $(src_base)/,,$(shell find $(src_base) \
-name '*.hxx' -o -name '*.ixx' -o -name '*.txx'))
$(dist): gen_headers := $(cli_tun:.cli=.hxx) $(cli_tun:.cli=.ixx)
$(dist): export headers = $(sort $(headers_dist) $(gen_headers))
$(dist): gen_dist := $(gen)
$(dist): data_dist := $(cli_tun) details/config.h.in
$(dist): export extra_dist := $(data_dist) libodb-pgsql-vc9.vcproj \
libodb-pgsql-vc10.vcxproj libodb-pgsql-vc10.vcxproj.filters
$(dist): export interface_version = $(shell sed -e \
's/^\([0-9]*\.[0-9]*\).*/\1/' $(src_root)/version)

$(dist): $(gen)
	$(call dist-data,$(sources_dist) $(headers_dist) $(data_dist))
	$(call dist-data,$(gen_dist),$(dist_prefix)/odb/pgsql/details)
	$(call meta-vc9proj,$(src_base)/libodb-pgsql-vc9.vcproj)
	$(call meta-vc10proj,$(src_base)/libodb-pgsql-vc10.vcxproj)
	$(call meta-automake)

# Clean.
#
$(clean): $(odb_pgsql.l).o.clean    \
  $(odb_pgsql.l.cpp-options).clean  \
  $(addsuffix .cxx.clean,$(cxx_obj)) \
  $(addsuffix .cxx.clean,$(cxx_od))  \
  $(addprefix $(out_base)/,$(cli_tun:.cli=.cxx.cli.clean))
	$(call message,rm $$1,rm -f $$1,$(out_base)/details/config.h)

# Generated .gitignore.
#
ifeq ($(out_base),$(src_base))
$(odb_pgsql.l): | $(out_base)/.gitignore

$(out_base)/.gitignore: files := details/config.h $(genf)
$(clean): $(out_base)/.gitignore.clean

$(call include,$(bld_root)/git/gitignore.make)
endif

# How to.
#
$(call include,$(bld_root)/dist.make)
$(call include,$(bld_root)/meta/vc9proj.make)
$(call include,$(bld_root)/meta/vc10proj.make)
$(call include,$(bld_root)/meta/automake.make)

$(call include,$(cli_rules))
$(call include,$(bld_root)/cxx/o-l.make)
$(call include,$(bld_root)/cxx/cxx-o.make)
$(call include,$(bld_root)/cxx/cxx-d.make)