comparison libgcc/static-object.mk @ 0:a06113de4d67

first commit
author kent <kent@cr.ie.u-ryukyu.ac.jp>
date Fri, 17 Jul 2009 14:47:48 +0900
parents
children 04ced10e8804
comparison
equal deleted inserted replaced
-1:000000000000 0:a06113de4d67
1 # This file is included several times in a row, once for each element of
2 # $(iter-items). On each inclusion, we advance $o to the next element.
3
4 o := $(firstword $(iter-items))
5 iter-items := $(filter-out $o,$(iter-items))
6
7 base := $(basename $(notdir $o))
8
9 ifeq ($(suffix $o),.c)
10
11 $(base)$(objext): $o
12 $(gcc_compile) $(c_flags) -c $< $(vis_hide)
13
14 else
15
16 ifneq ($(suffix $o),.S)
17 ifneq ($(suffix $o),.asm)
18 $(error Unsupported file type: $o)
19 endif
20 endif
21
22 $(base)$(objext): $o
23 $(gcc_compile) -c -xassembler-with-cpp $<
24
25 endif