aboutsummaryrefslogtreecommitdiff
path: root/makefile
blob: 00a6adb15975f8b30660432bfb76bcf77dd9b48e (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
# file      : makefile
# author    : Boris Kolpackov <boris@codesynthesis.com>
# copyright : Copyright (c) 2005-2010 Code Synthesis Tools CC
# license   : GNU GPL v2; 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
cleandoc := $(out_base)/.cleandoc

$(default): $(out_base)/odb/


# Test.
#
$(test): $(out_base)/tests/.test


# Install.
#
$(install): $(out_base)/odb/.install


# Clean.
#
$(clean): $(out_base)/odb/.clean

$(cleandoc): $(out_base)/doc/.cleandoc

$(call include,$(bld_root)/install.make)

$(call import,$(src_base)/odb/makefile)