summaryrefslogtreecommitdiff
path: root/build-0.3/c/gnu/c-d.make
blob: bc7411fab15c4599b31fbffb2b2e569cae790069 (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
# file      : build/c/gnu/c-o.make
# copyright : Copyright (c) 2004-2012 Code Synthesis Tools CC
# license   : GNU GPL v2; see accompanying LICENSE file

$(call include-once,$(bld_root)/c/cpp-options.make,$(out_base))
$(call include,$(bld_root)/c/gnu/configuration.make)

# Make will try to build dependecies (since they are ultimately included
# files) during configuartion phase without c_gnu being discovered yet.
# This is also why dependecies should be included with -include.
#
ifdef c_gnu

$(out_base)/%.o.d: c := $(c_gnu)
$(out_base)/%.o.d: cpp_options ?=

#@@ This needs to be shared with c-o.
#
#@@ wrong prefix
#
$(out_base)/%.o.d: expand-cpp-options-impl = \
$(if $1,$(shell sed -e 's%include: \(.*\)%\1%' -e t -e d $1))

$(out_base)/%.o.d: expand-cpp-options = \
$(call expand-cpp-options-impl,$(filter %.cpp-options,$1))

.PRECIOUS: $(out_base)/%.o.d

ifeq ($(out_base),$(src_base))
$(out_base)/%.o.d: $(src_base)/%.$(c_s_suffix)
else
$(out_base)/%.o.d: $(src_base)/%.$(c_s_suffix) | $$(dir $$@).
endif
	$(call message,,if test -f $@; then mv $@ $@.old; fi && \
$(c) $(cpp_options) $(call expand-cpp-options,$^) $(c_pp_extra_options) \
$(c_extra_options) -M -MG -MP -MQ $@ -MQ $(basename $@) $< | \
$(bld_root)/c/gnu/dep $(out_base) $(filter %.cpp-options,$^) >$@ && \
if test -f $@.old; then if cmp -s $@ $@.old; then rm -f $@.old && false; \
else rm -f $@.old && true; fi fi)

ifneq ($(out_base),$(src_base))

$(out_base)/%.o.d: $(out_base)/%.$(c_s_suffix) | $$(dir $$@).
	$(call message,,if test -f $@; then mv $@ $@.old; fi && \
$(c) $(cpp_options) $(call expand-cpp-options,$^) $(c_pp_extra_options) \
$(c_extra_options)  -M -MG -MP -MQ $@ -MQ $(basename $@) $< | \
$(bld_root)/c/gnu/dep $(out_base) $(filter %.cpp-options,$^) >$@ && \
if test -f $@.old; then if cmp -s $@ $@.old; then rm -f $@.old && false; \
else rm -f $@.old && true; fi fi)

endif

.PHONY: $(out_base)/%.o.d.$(c_s_suffix).clean

$(out_base)/%.o.d.$(c_s_suffix).clean:
	$(call message,rm $$1,rm -f $$1,$(basename $(basename $@)))

endif