rules.mak 8.5 KB
Newer Older
A
aliguori 已提交
1

2 3 4 5 6 7 8 9 10
# Don't use implicit rules or variables
# we have explicit rules for everything
MAKEFLAGS += -rR

# Files with this suffixes are final, don't try to generate them
# using implicit rules
%.d:
%.h:
%.c:
11
%.cc:
12
%.cpp:
13 14 15
%.m:
%.mak:

16 17 18
# Flags for C++ compilation
QEMU_CXXFLAGS = -D__STDC_LIMIT_MACROS $(filter-out -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wold-style-declaration -Wold-style-definition -Wredundant-decls, $(QEMU_CFLAGS))

19
# Flags for dependency generation
20
QEMU_DGFLAGS += -MMD -MP -MT $@ -MF $(*D)/$(*F).d
21

22
# Same as -I$(SRC_PATH) -I., but for the nested source/object directories
D
Dunrong Huang 已提交
23
QEMU_INCLUDES += -I$(<D) -I$(@D)
24

F
Fam Zheng 已提交
25
maybe-add = $(filter-out $1, $2) $1
26 27
extract-libs = $(strip $(sort $(foreach o,$1,$($o-libs))) \
                  $(foreach o,$(call expand-objs,$1),$($o-libs)))
F
Fam Zheng 已提交
28 29 30
expand-objs = $(strip $(sort $(filter %.o,$1)) \
                  $(foreach o,$(filter %.mo,$1),$($o-objs)) \
                  $(filter-out %.o %.mo,$1))
31

32
%.o: %.c
33
	$(call quiet-command,$(CC) $(QEMU_INCLUDES) $(QEMU_CFLAGS) $(QEMU_DGFLAGS) $(CFLAGS) $($@-cflags) -c -o $@ $<,"  CC    $(TARGET_DIR)$@")
34 35
%.o: %.rc
	$(call quiet-command,$(WINDRES) -I. -o $@ $<,"  RC    $(TARGET_DIR)$@")
A
aliguori 已提交
36

37 38 39 40
# If we have a CXX we might have some C++ objects, in which case we
# must link with the C++ compiler, not the plain C compiler.
LINKPROG = $(or $(CXX),$(CC))

A
Alon Levy 已提交
41
ifeq ($(LIBTOOL),)
42
LINK = $(call quiet-command,$(LINKPROG) $(QEMU_CFLAGS) $(CFLAGS) $(LDFLAGS) -o $@ \
F
Fam Zheng 已提交
43 44
       $(call expand-objs,$1) $(version-obj-y) \
       $(call extract-libs,$1) $(LIBS),"  LINK  $(TARGET_DIR)$@")
A
Alon Levy 已提交
45
else
46
LIBTOOL += $(if $(V),,--quiet)
A
Alon Levy 已提交
47
%.lo: %.c
48
	$(call quiet-command,$(LIBTOOL) --mode=compile --tag=CC $(CC) $(QEMU_INCLUDES) $(QEMU_CFLAGS) $(QEMU_DGFLAGS) $(CFLAGS) $($*.o-cflags) -c -o $@ $<,"  lt CC $@")
49 50
%.lo: %.rc
	$(call quiet-command,$(LIBTOOL) --mode=compile --tag=RC $(WINDRES) -I. -o $@ $<,"lt RC   $(TARGET_DIR)$@")
51 52 53
%.lo: %.dtrace
	$(call quiet-command,$(LIBTOOL) --mode=compile --tag=CC dtrace -o $@ -G -s $<, " lt GEN $(TARGET_DIR)$@")

54
LINK = $(call quiet-command,\
F
Fam Zheng 已提交
55
       $(if $(filter %.lo %.la,$1),$(LIBTOOL) --mode=link --tag=CC \
56
       )$(LINKPROG) $(QEMU_CFLAGS) $(CFLAGS) $(LDFLAGS) -o $@ \
F
Fam Zheng 已提交
57 58 59
       $(call expand-objs,$1) \
       $(if $(filter %.lo %.la,$1),$(version-lobj-y),$(version-obj-y)) \
       $(if $(filter %.lo %.la,$1),$(LIBTOOLFLAGS)) \
60
       $(call extract-libs,$(1:.lo=.o)) $(LIBS),$(if $(filter %.lo %.la,$1),"lt LINK ", "  LINK  ")"$(TARGET_DIR)$@")
A
Alon Levy 已提交
61 62
endif

63 64 65 66 67
%.asm: %.S
	$(call quiet-command,$(CPP) $(QEMU_INCLUDES) $(QEMU_CFLAGS) $(QEMU_DGFLAGS) $(CFLAGS) -o $@ $<,"  CPP   $(TARGET_DIR)$@")

%.o: %.asm
	$(call quiet-command,$(AS) $(ASFLAGS) -o $@ $<,"  AS    $(TARGET_DIR)$@")
A
aliguori 已提交
68

69
%.o: %.cc
70
	$(call quiet-command,$(CXX) $(QEMU_INCLUDES) $(QEMU_CXXFLAGS) $(QEMU_DGFLAGS) $(CFLAGS) $($@-cflags) -c -o $@ $<,"  CXX   $(TARGET_DIR)$@")
71

72
%.o: %.cpp
73
	$(call quiet-command,$(CXX) $(QEMU_INCLUDES) $(QEMU_CXXFLAGS) $(QEMU_DGFLAGS) $(CFLAGS) $($@-cflags) -c -o $@ $<,"  CXX   $(TARGET_DIR)$@")
74

A
aliguori 已提交
75
%.o: %.m
76
	$(call quiet-command,$(OBJCC) $(QEMU_INCLUDES) $(QEMU_CFLAGS) $(QEMU_DGFLAGS) $(CFLAGS) $($@-cflags) -c -o $@ $<,"  OBJC  $(TARGET_DIR)$@")
A
aliguori 已提交
77

78 79 80
%.o: %.dtrace
	$(call quiet-command,dtrace -o $@ -G -s $<, "  GEN   $(TARGET_DIR)$@")

F
Fam Zheng 已提交
81 82 83 84
DSO_CFLAGS := -fPIC -DBUILD_DSO
%$(DSOSUF): LDFLAGS += $(LDFLAGS_SHARED)
%$(DSOSUF): %.mo libqemustub.a
	$(call LINK,$^)
F
Fam Zheng 已提交
85 86
	@# Copy to build root so modules can be loaded when program started without install
	$(if $(findstring /,$@),$(call quiet-command,cp $@ $(subst /,-,$@), "  CP    $(subst /,-,$@)"))
F
Fam Zheng 已提交
87 88 89 90

.PHONY: modules
modules:

A
aliguori 已提交
91
%$(EXESUF): %.o
A
Anthony Liguori 已提交
92
	$(call LINK,$^)
A
aliguori 已提交
93

94
%.a:
95
	$(call quiet-command,rm -f $@ && $(AR) rcs $@ $^,"  AR    $(TARGET_DIR)$@")
96

97
quiet-command = $(if $(V),$1,$(if $(2),@echo $2 && $1, @$1))
98 99

# cc-option
100
# Usage: CFLAGS+=$(call cc-option, -falign-functions=0, -malign-functions=0)
101

102 103
cc-option = $(if $(shell $(CC) $1 $2 -S -o /dev/null -xc /dev/null \
              >/dev/null 2>&1 && echo OK), $2, $3)
104

105
VPATH_SUFFIXES = %.c %.h %.S %.cc %.cpp %.m %.mak %.texi %.sh %.rc
106
set-vpath = $(if $1,$(foreach PATTERN,$(VPATH_SUFFIXES),$(eval vpath $(PATTERN) $1)))
P
Paolo Bonzini 已提交
107

P
Paolo Bonzini 已提交
108 109 110 111 112 113 114 115 116
# find-in-path
# Usage: $(call find-in-path, prog)
# Looks in the PATH if the argument contains no slash, else only considers one
# specific directory.  Returns an # empty string if the program doesn't exist
# there.
find-in-path = $(if $(find-string /, $1), \
        $(wildcard $1), \
        $(wildcard $(patsubst %, %/$1, $(subst :, ,$(PATH)))))

117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133
# Logical functions (for operating on y/n values like CONFIG_FOO vars)
# Inputs to these must be either "y" (true) or "n" or "" (both false)
# Output is always either "y" or "n".
# Usage: $(call land,$(CONFIG_FOO),$(CONFIG_BAR))
# Logical NOT
lnot = $(if $(subst n,,$1),n,y)
# Logical AND
land = $(if $(findstring yy,$1$2),y,n)
# Logical OR
lor = $(if $(findstring y,$1$2),y,n)
# Logical XOR (note that this is the inverse of leqv)
lxor = $(if $(filter $(call lnot,$1),$(call lnot,$2)),n,y)
# Logical equivalence (note that leqv "","n" is true)
leqv = $(if $(filter $(call lnot,$1),$(call lnot,$2)),y,n)
# Logical if: like make's $(if) but with an leqv-like test
lif = $(if $(subst n,,$1),$2,$3)

134 135 136 137 138 139 140 141 142 143 144
# String testing functions: inputs to these can be any string;
# the output is always either "y" or "n". Leading and trailing whitespace
# is ignored when comparing strings.
# String equality
eq = $(if $(subst $2,,$1)$(subst $1,,$2),n,y)
# String inequality
ne = $(if $(subst $2,,$1)$(subst $1,,$2),y,n)
# Emptiness/non-emptiness tests:
isempty = $(if $1,n,y)
notempty = $(if $1,y,n)

145 146 147
# Generate files with tracetool
TRACETOOL=$(PYTHON) $(SRC_PATH)/scripts/tracetool.py

148 149
# Generate timestamp files for .h include files

150 151
config-%.h: config-%.h-timestamp
	@cmp $< $@ >/dev/null 2>&1 || cp $< $@
152

153 154
config-%.h-timestamp: config-%.mak
	$(call quiet-command, sh $(SRC_PATH)/scripts/create_config < $< > $@, "  GEN   $(TARGET_DIR)config-$*.h")
155

156 157 158 159 160
.PHONY: clean-timestamp
clean-timestamp:
	rm -f *.timestamp
clean: clean-timestamp

161 162
# will delete the target of a rule if commands exit with a nonzero exit status
.DELETE_ON_ERROR:
P
Paolo Bonzini 已提交
163 164 165 166 167 168 169 170 171 172 173 174 175 176

# magic to descend into other directories

define push-var
$(eval save-$2-$1 = $(value $1))
$(eval $1 :=)
endef

define pop-var
$(eval subdir-$2-$1 := $(if $(filter $2,$(save-$2-$1)),$(addprefix $2,$($1))))
$(eval $1 = $(value save-$2-$1) $$(subdir-$2-$1))
$(eval save-$2-$1 :=)
endef

177
define fix-obj-vars
178
$(if $2, $(foreach v,$($1), \
179
	$(if $($v-cflags), \
180
		$(eval $2/$v-cflags := $($v-cflags)) \
181 182
		$(eval $v-cflags := )) \
	$(if $($v-libs), \
183
		$(eval $2/$v-libs := $($v-libs)) \
F
Fam Zheng 已提交
184 185
		$(eval $v-libs := )) \
	$(if $($v-objs), \
186 187
		$(eval $2/$v-objs := $(addprefix $2/,$($v-objs))) \
		$(eval $v-objs := ))))
188 189
endef

P
Paolo Bonzini 已提交
190 191
define unnest-dir
$(foreach var,$(nested-vars),$(call push-var,$(var),$1/))
192 193
$(eval obj-parent-$1 := $(obj))
$(eval obj := $(if $(obj),$(obj)/$1,$1))
P
Paolo Bonzini 已提交
194
$(eval include $(SRC_PATH)/$1/Makefile.objs)
195
$(foreach v,$(nested-vars),$(call fix-obj-vars,$v,$(obj)))
196 197
$(eval obj := $(obj-parent-$1))
$(eval obj-parent-$1 := )
P
Paolo Bonzini 已提交
198 199 200 201 202 203 204 205 206 207 208 209 210
$(foreach var,$(nested-vars),$(call pop-var,$(var),$1/))
endef

define unnest-vars-1
$(eval nested-dirs := $(filter-out \
    $(old-nested-dirs), \
    $(sort $(foreach var,$(nested-vars), $(filter %/, $($(var)))))))
$(if $(nested-dirs),
  $(foreach dir,$(nested-dirs),$(call unnest-dir,$(patsubst %/,%,$(dir))))
  $(eval old-nested-dirs := $(old-nested-dirs) $(nested-dirs))
  $(call unnest-vars-1))
endef

F
Fam Zheng 已提交
211 212 213 214 215
define process-modules
$(foreach o,$(filter %.o,$($1)),
	$(eval $(patsubst %.o,%.mo,$o): $o) \
	$(eval $(patsubst %.o,%.mo,$o)-objs := $o))
$(foreach o,$(filter-out $(modules-m), $(patsubst %.o,%.mo,$($1))), \
F
Fam Zheng 已提交
216
    $(eval $o-objs += module-common.o)
F
Fam Zheng 已提交
217 218 219 220 221 222 223 224 225 226 227
    $(eval $o: $($o-objs))
    $(eval modules-objs-m += $($o-objs))
    $(eval modules-m += $o)
    $(eval $o:; $$(call quiet-command,touch $$@,"  GEN   $$(TARGET_DIR)$$@"))
    $(if $(CONFIG_MODULES),$(eval modules: $(patsubst %.mo,%$(DSOSUF),$o)))) \
$(eval modules-objs-m := $(sort $(modules-objs-m)))
$(foreach o,$(modules-objs-m), \
    $(if $(CONFIG_MODULES),$(eval $o-cflags := $(call maybe-add, $(DSO_CFLAGS), $($o-cflags)))))
$(eval $(patsubst %-m,%-$(call lnot,$(CONFIG_MODULES)),$1) += $($1))
endef

P
Paolo Bonzini 已提交
228
define unnest-vars
229 230
$(eval obj := $1)
$(eval nested-vars := $2)
231
$(foreach v,$(nested-vars),$(call fix-obj-vars,$v,$(obj)))
232
$(eval old-nested-dirs := )
P
Paolo Bonzini 已提交
233
$(call unnest-vars-1)
234 235
$(if $1,$(foreach v,$(nested-vars),$(eval \
	$v := $(addprefix $1/,$($v)))))
P
Paolo Bonzini 已提交
236
$(foreach var,$(nested-vars),$(eval $(var) := $(filter-out %/, $($(var)))))
237
$(shell mkdir -p $(sort $(foreach var,$(nested-vars),$(dir $($(var))))))
238 239
$(foreach var,$(nested-vars), $(eval \
  -include $(addsuffix *.d, $(sort $(dir $($(var)))))))
F
Fam Zheng 已提交
240 241
$(foreach v,$(filter %-m,$(nested-vars)), \
    $(call process-modules,$v))
P
Paolo Bonzini 已提交
242
endef