[PATCH] gratuitous includes of asm/serial.h
[linux-2.6-block.git] / arch / um / scripts / Makefile.rules
CommitLineData
1da177e4
LT
1# ===========================================================================
2# arch/um: Generic definitions
3# ===========================================================================
4
2ba49175
JD
5USER_SINGLE_OBJS := \
6 $(foreach f,$(patsubst %.o,%,$(obj-y) $(obj-m)),$($(f)-objs))
7USER_OBJS += $(filter %_user.o,$(obj-y) $(obj-m) $(USER_SINGLE_OBJS))
1da177e4
LT
8USER_OBJS := $(foreach file,$(USER_OBJS),$(obj)/$(file))
9
2ba49175
JD
10$(USER_OBJS) : c_flags = -Wp,-MD,$(depfile) $(USER_CFLAGS) \
11 $(CFLAGS_$(notdir $@))
1da177e4 12
60b2737d
PBG
13# The stubs and unmap.o can't try to call mcount or update basic block data
14define unprofile
15 $(patsubst -pg,,$(patsubst -fprofile-arcs -ftest-coverage,,$(1)))
16endef
17
18
d67b569f
JD
19# The stubs and unmap.o can't try to call mcount or update basic block data
20define unprofile
21 $(patsubst -pg,,$(patsubst -fprofile-arcs -ftest-coverage,,$(1)))
22endef
23
1da177e4 24quiet_cmd_make_link = SYMLINK $@
776cfebb
PBG
25cmd_make_link = ln -sf $(srctree)/arch/$(SUBARCH)/$($(notdir $@)-dir)/$(notdir $@) $@
26
27# this needs to be before the foreach, because targets does not accept
36ca1195 28# complete paths like $(obj)/$(f). To make sure this works, use a := assignment
776cfebb
PBG
29# or we will get $(obj)/$(f) in the "targets" value.
30# Also, this forces you to use the := syntax when assigning to targets.
31# Otherwise the line below will cause an infinite loop (if you don't know why,
32# just do it).
33
34targets := $(targets) $(SYMLINKS)
35
36SYMLINKS := $(foreach f,$(SYMLINKS),$(obj)/$(f))
37
38$(SYMLINKS): FORCE
39 $(call if_changed,make_link)