blob: 44997458da40573eb765704d0235f75a65759e48 [file] [log] [blame]
aliguori17759182009-01-21 18:12:52 +00001
Juan Quintela5ab28862009-10-06 21:11:14 +02002# Don't use implicit rules or variables
3# we have explicit rules for everything
4MAKEFLAGS += -rR
5
6# Files with this suffixes are final, don't try to generate them
7# using implicit rules
8%.d:
9%.h:
10%.c:
11%.m:
12%.mak:
13
Stefan Weil7ebf54b2009-11-19 20:07:52 +010014# Flags for dependency generation
Jan Kiszkaa71cd2a2010-05-15 13:03:28 +020015QEMU_DGFLAGS += -MMD -MP -MT $@ -MF $(*D)/$(*F).d
malc02d54672009-10-11 17:08:57 +040016
Paolo Bonzini9d9199a2012-09-17 10:21:52 +020017# Same as -I$(SRC_PATH) -I., but for the nested source/object directories
Dunrong Huang7e7da8e2013-04-29 22:52:12 +080018QEMU_INCLUDES += -I$(<D) -I$(@D)
Paolo Bonzini9d9199a2012-09-17 10:21:52 +020019
Andreas Färber0e8c9212010-01-06 20:24:05 +010020%.o: %.c
Jiri Denemark76dc3cf2011-08-10 12:04:34 +020021 $(call quiet-command,$(CC) $(QEMU_INCLUDES) $(QEMU_CFLAGS) $(QEMU_DGFLAGS) $(CFLAGS) -c -o $@ $<," CC $(TARGET_DIR)$@")
Paolo Bonzini6821cdc2013-04-27 00:25:31 +020022%.o: %.rc
23 $(call quiet-command,$(WINDRES) -I. -o $@ $<," RC $(TARGET_DIR)$@")
aliguori17759182009-01-21 18:12:52 +000024
Alon Levy44dc0ca2011-05-15 11:51:28 +030025ifeq ($(LIBTOOL),)
Paolo Bonzini21655882012-12-20 18:57:45 +010026LINK = $(call quiet-command,$(CC) $(QEMU_CFLAGS) $(CFLAGS) $(LDFLAGS) -o $@ \
Paolo Bonzinibf0842b2012-12-20 17:36:35 +010027 $(sort $(filter %.o, $1)) $(filter-out %.o, $1) $(version-obj-y) \
Paolo Bonzini21655882012-12-20 18:57:45 +010028 $(LIBS)," LINK $(TARGET_DIR)$@")
Alon Levy44dc0ca2011-05-15 11:51:28 +030029else
Paolo Bonzinif141ccf2012-12-20 18:32:53 +010030LIBTOOL += $(if $(V),,--quiet)
Alon Levy44dc0ca2011-05-15 11:51:28 +030031%.lo: %.c
Paolo Bonzinif141ccf2012-12-20 18:32:53 +010032 $(call quiet-command,$(LIBTOOL) --mode=compile --tag=CC $(CC) $(QEMU_INCLUDES) $(QEMU_CFLAGS) $(QEMU_DGFLAGS) $(CFLAGS) -c -o $@ $<," lt CC $@")
Paolo Bonzini6821cdc2013-04-27 00:25:31 +020033%.lo: %.rc
34 $(call quiet-command,$(LIBTOOL) --mode=compile --tag=RC $(WINDRES) -I. -o $@ $<,"lt RC $(TARGET_DIR)$@")
Paolo Bonzini2c13ec52012-12-21 09:23:18 +010035%.lo: %.dtrace
36 $(call quiet-command,$(LIBTOOL) --mode=compile --tag=CC dtrace -o $@ -G -s $<, " lt GEN $(TARGET_DIR)$@")
37
Paolo Bonzini21655882012-12-20 18:57:45 +010038LINK = $(call quiet-command,\
39 $(if $(filter %.lo %.la,$^),$(LIBTOOL) --mode=link --tag=CC \
40 )$(CC) $(QEMU_CFLAGS) $(CFLAGS) $(LDFLAGS) -o $@ \
Marc-André Lureau5354e4d2013-02-25 23:31:13 +010041 $(sort $(filter %.o, $1)) $(filter-out %.o, $1) \
42 $(if $(filter %.lo %.la,$^),$(version-lobj-y),$(version-obj-y)) \
Marc-André Lureau37746c52013-02-25 23:31:12 +010043 $(if $(filter %.lo %.la,$^),$(LIBTOOLFLAGS)) \
Paolo Bonzini21655882012-12-20 18:57:45 +010044 $(LIBS),$(if $(filter %.lo %.la,$^),"lt LINK ", " LINK ")"$(TARGET_DIR)$@")
Alon Levy44dc0ca2011-05-15 11:51:28 +030045endif
46
Blue Swirl3dd46c72013-01-05 10:10:27 +000047%.asm: %.S
48 $(call quiet-command,$(CPP) $(QEMU_INCLUDES) $(QEMU_CFLAGS) $(QEMU_DGFLAGS) $(CFLAGS) -o $@ $<," CPP $(TARGET_DIR)$@")
49
50%.o: %.asm
51 $(call quiet-command,$(AS) $(ASFLAGS) -o $@ $<," AS $(TARGET_DIR)$@")
aliguori17759182009-01-21 18:12:52 +000052
53%.o: %.m
Peter Maydell3c4a4d02012-08-11 22:34:40 +010054 $(call quiet-command,$(OBJCC) $(QEMU_INCLUDES) $(QEMU_CFLAGS) $(QEMU_DGFLAGS) $(CFLAGS) -c -o $@ $<," OBJC $(TARGET_DIR)$@")
aliguori17759182009-01-21 18:12:52 +000055
Paolo Bonzini2c13ec52012-12-21 09:23:18 +010056%.o: %.dtrace
57 $(call quiet-command,dtrace -o $@ -G -s $<, " GEN $(TARGET_DIR)$@")
58
aliguori3aa892d2009-01-21 18:13:02 +000059%$(EXESUF): %.o
Anthony Liguori0bfe3ca2009-05-14 19:29:53 +010060 $(call LINK,$^)
aliguori4f188f82009-01-21 18:13:09 +000061
aliguori93a0dba2009-01-21 18:13:16 +000062%.a:
aliguori28c699a2009-01-26 17:07:46 +000063 $(call quiet-command,rm -f $@ && $(AR) rcs $@ $^," AR $(TARGET_DIR)$@")
aliguori93a0dba2009-01-21 18:13:16 +000064
aliguori28c699a2009-01-26 17:07:46 +000065quiet-command = $(if $(V),$1,$(if $(2),@echo $2 && $1, @$1))
Juan Quintela70071e12009-07-21 14:11:18 +020066
67# cc-option
Juan Quintela8a2e6ab2009-08-31 00:48:45 +020068# Usage: CFLAGS+=$(call cc-option, -falign-functions=0, -malign-functions=0)
Juan Quintela70071e12009-07-21 14:11:18 +020069
Thomas Monjalonfc3baad2009-09-11 18:45:40 +020070cc-option = $(if $(shell $(CC) $1 $2 -S -o /dev/null -xc /dev/null \
71 >/dev/null 2>&1 && echo OK), $2, $3)
Juan Quintela1215c6e2009-10-07 02:40:58 +020072
Paolo Bonzinifba90ac2013-05-01 18:30:15 +020073VPATH_SUFFIXES = %.c %.h %.S %.m %.mak %.texi %.sh %.rc
Nathan Froyd288e7bc2010-04-26 14:52:23 -070074set-vpath = $(if $1,$(foreach PATTERN,$(VPATH_SUFFIXES),$(eval vpath $(PATTERN) $1)))
Paolo Bonzini076d2472009-12-21 10:06:55 +010075
Paolo Bonzini2b2e59e2010-10-21 10:18:40 +020076# find-in-path
77# Usage: $(call find-in-path, prog)
78# Looks in the PATH if the argument contains no slash, else only considers one
79# specific directory. Returns an # empty string if the program doesn't exist
80# there.
81find-in-path = $(if $(find-string /, $1), \
82 $(wildcard $1), \
83 $(wildcard $(patsubst %, %/$1, $(subst :, ,$(PATH)))))
84
Lluís Vilanovac0424932012-04-18 20:15:45 +020085# Generate files with tracetool
86TRACETOOL=$(PYTHON) $(SRC_PATH)/scripts/tracetool.py
87
Juan Quintela1215c6e2009-10-07 02:40:58 +020088# Generate timestamp files for .h include files
89
Michael S. Tsirkin4b259662013-01-15 13:12:35 +020090config-%.h: config-%.h-timestamp
91 @cmp $< $@ >/dev/null 2>&1 || cp $< $@
Juan Quintela1215c6e2009-10-07 02:40:58 +020092
Michael S. Tsirkin4b259662013-01-15 13:12:35 +020093config-%.h-timestamp: config-%.mak
94 $(call quiet-command, sh $(SRC_PATH)/scripts/create_config < $< > $@, " GEN $(TARGET_DIR)config-$*.h")
Michael S. Tsirkin7dbbbb02009-12-07 21:04:52 +020095
Michael S. Tsirkin75863172013-01-15 13:27:54 +020096.PHONY: clean-timestamp
97clean-timestamp:
98 rm -f *.timestamp
99clean: clean-timestamp
100
Michael S. Tsirkin7dbbbb02009-12-07 21:04:52 +0200101# will delete the target of a rule if commands exit with a nonzero exit status
102.DELETE_ON_ERROR:
Paolo Bonzinie05804e2012-05-22 13:41:27 +0200103
104# magic to descend into other directories
105
106obj := .
107old-nested-dirs :=
108
109define push-var
110$(eval save-$2-$1 = $(value $1))
111$(eval $1 :=)
112endef
113
114define pop-var
115$(eval subdir-$2-$1 := $(if $(filter $2,$(save-$2-$1)),$(addprefix $2,$($1))))
116$(eval $1 = $(value save-$2-$1) $$(subdir-$2-$1))
117$(eval save-$2-$1 :=)
118endef
119
120define unnest-dir
121$(foreach var,$(nested-vars),$(call push-var,$(var),$1/))
122$(eval obj := $(obj)/$1)
123$(eval include $(SRC_PATH)/$1/Makefile.objs)
124$(eval obj := $(patsubst %/$1,%,$(obj)))
125$(foreach var,$(nested-vars),$(call pop-var,$(var),$1/))
126endef
127
128define unnest-vars-1
129$(eval nested-dirs := $(filter-out \
130 $(old-nested-dirs), \
131 $(sort $(foreach var,$(nested-vars), $(filter %/, $($(var)))))))
132$(if $(nested-dirs),
133 $(foreach dir,$(nested-dirs),$(call unnest-dir,$(patsubst %/,%,$(dir))))
134 $(eval old-nested-dirs := $(old-nested-dirs) $(nested-dirs))
135 $(call unnest-vars-1))
136endef
137
138define unnest-vars
139$(call unnest-vars-1)
140$(foreach var,$(nested-vars),$(eval $(var) := $(filter-out %/, $($(var)))))
Paolo Bonzini2dee8d52012-06-04 09:15:43 +0200141$(shell mkdir -p $(sort $(foreach var,$(nested-vars),$(dir $($(var))))))
Paolo Bonzini1435ddb2012-07-11 16:40:21 +0200142$(foreach var,$(nested-vars), $(eval \
143 -include $(addsuffix *.d, $(sort $(dir $($(var)))))))
Paolo Bonzinie05804e2012-05-22 13:41:27 +0200144endef