aboutsummaryrefslogtreecommitdiff
path: root/makefile
blob: b26128f9dc09d28d84e267ec06d4924f33e2a5d2 (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
# file      : makefile
# author    : Boris Kolpackov <boris@codesynthesis.com>
# copyright : Copyright (c) 2009 Code Synthesis Tools CC
# license   : MIT; see accompanying LICENSE file

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

default  := $(out_base)/

.PHONY: $(default) test install clean

# Build.
#
$(default): $(out_base)/cli/cli/

# Test.
#
test: $(out_base)/libcutl/.test $(out_base)/cli/.test

# Install.
#
install:

# Clean.
#
clean: $(out_base)/libcutl/.clean $(out_base)/cli/.clean

# Reset pattern-specific variables because GNU make will use the
# first match instead of the most specific match. Here out_root
# and out_base are the same.
#
$(out_root)/%: out_root :=
$(out_root)/%: out_base :=
$(out_root)/%: src_root :=
$(out_root)/%: src_base :=
$(out_root)/%: scf_root :=
$(out_root)/%: dcf_root :=
$(out_root)/%: project_name :=

src_root := $(src_base)/libcutl
scf_root := $(src_root)/build
out_root := $(src_root)
$(call import,$(src_base)/libcutl/makefile)

src_root := $(src_base)/cli
scf_root := $(src_root)/build
out_root := $(src_root)
$(call import,$(src_base)/cli/makefile)