OSDN Git Service

Merge commit 'origin/master' into nptl
[uclinux-h8/uClibc.git] / test / Rules.mak
1 # Rules.mak for uClibc test subdirs
2 #
3 # Copyright (C) 2000-2006 Erik Andersen <andersen@uclibc.org>
4 #
5 # Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
6 #
7
8 .SUFFIXES:
9
10 top_builddir ?= ../
11
12 TESTDIR=$(top_builddir)test/
13
14 include $(top_builddir)/Rules.mak
15 ifndef TEST_INSTALLED_UCLIBC
16 ifdef UCLIBC_LDSO
17 ifeq (,$(findstring /,$(UCLIBC_LDSO)))
18 UCLIBC_LDSO := $(top_builddir)lib/$(UCLIBC_LDSO)
19 endif
20 else
21 UCLIBC_LDSO := $(firstword $(wildcard $(top_builddir)lib/ld*))
22 endif
23 endif
24 #--------------------------------------------------------
25 # Ensure consistent sort order, 'gcc -print-search-dirs' behavior, etc.
26 LC_ALL:= C
27 export LC_ALL
28
29 ifeq ($(strip $(TARGET_ARCH)),)
30 TARGET_ARCH:=$(shell $(CC) -dumpmachine | sed -e s'/-.*//' \
31         -e 's/i.86/i386/' \
32         -e 's/sun.*/sparc/' -e 's/sparc.*/sparc/' \
33         -e 's/sa110/arm/' -e 's/arm.*/arm/g' \
34         -e 's/m68k.*/m68k/' \
35         -e 's/parisc.*/hppa/' \
36         -e 's/ppc/powerpc/g' \
37         -e 's/v850.*/v850/g' \
38         -e 's/sh[234]/sh/' \
39         -e 's/mips.*/mips/' \
40         -e 's/cris.*/cris/' \
41         -e 's/xtensa.*/xtensa/' \
42         )
43 endif
44 export TARGET_ARCH
45
46 RM_R = $(Q)$(RM) -r
47
48 ifneq ($(KERNEL_HEADERS),)
49 ifeq ($(patsubst /%,/,$(KERNEL_HEADERS)),/)
50 # Absolute path in KERNEL_HEADERS
51 KERNEL_INCLUDES += -I$(KERNEL_HEADERS)
52 else
53 # Relative path in KERNEL_HEADERS
54 KERNEL_INCLUDES += -I$(top_builddir)$(KERNEL_HEADERS)
55 endif
56 endif
57
58 XCOMMON_CFLAGS := -I$(top_builddir)test -D_GNU_SOURCE
59 XWARNINGS      += $(call check_gcc,-Wstrict-prototypes,)
60 CFLAGS         := -nostdinc -I$(top_builddir)$(LOCAL_INSTALL_PATH)/usr/include
61 CFLAGS         += $(XCOMMON_CFLAGS) $(KERNEL_INCLUDES) $(CC_INC)
62 CFLAGS         += $(OPTIMIZATION) $(CPU_CFLAGS) $(XWARNINGS)
63
64 # Can't add $(OPTIMIZATION) here, it may be target-specific.
65 # Just adding -Os for now.
66 HOST_CFLAGS    += $(XCOMMON_CFLAGS) -Os $(XWARNINGS) -std=gnu99
67
68 LDFLAGS        := $(CPU_LDFLAGS-y) -Wl,-z,now
69 ifeq ($(DODEBUG),y)
70         CFLAGS        += -g
71         HOST_CFLAGS   += -g
72         LDFLAGS       += -Wl,-g
73         HOST_LDFLAGS  += -Wl,-g
74 else
75         LDFLAGS       += -Wl,-s
76         HOST_LDFLAGS  += -Wl,-s
77 endif
78
79 ifneq ($(HAVE_SHARED),y)
80         LDFLAGS       += -Wl,-static -static-libgcc
81 endif
82
83 LDFLAGS += -B$(top_builddir)lib -Wl,-rpath,$(top_builddir)lib -Wl,-rpath-link,$(top_builddir)lib
84 UCLIBC_LDSO_ABSPATH=$(shell pwd)
85 ifdef TEST_INSTALLED_UCLIBC
86 LDFLAGS += -Wl,-rpath,./
87 UCLIBC_LDSO_ABSPATH=$(SHARED_LIB_LOADER_PREFIX)
88 endif
89
90 ifeq ($(findstring -static,$(LDFLAGS)),)
91 LDFLAGS += -Wl,--dynamic-linker,$(UCLIBC_LDSO_ABSPATH)/$(UCLIBC_LDSO)
92 endif
93
94 ifeq ($(LDSO_GNU_HASH_SUPPORT),y)
95 # Check for binutils support is done on root Rules.mak
96 LDFLAGS += -Wl,${LDFLAGS_GNUHASH}
97 endif
98
99
100 ifneq ($(findstring -s,$(MAKEFLAGS)),)
101 DISP := sil
102 Q    := @
103 SCAT := -@true
104 else
105 ifneq ($(V)$(VERBOSE),)
106 DISP := ver
107 Q    :=
108 SCAT := cat
109 else
110 DISP := pur
111 Q    := @
112 SCAT := -@true
113 endif
114 endif
115 ifneq ($(Q),)
116 MAKEFLAGS += --no-print-directory
117 endif
118
119 banner := ---------------------------------
120 pur_showclean = echo "  "CLEAN $(notdir $(CURDIR))
121 pur_showdiff  = echo "  "TEST_DIFF $(notdir $(CURDIR))/
122 pur_showlink  = echo "  "TEST_LINK $(notdir $(CURDIR))/ $@
123 pur_showtest  = echo "  "TEST_EXEC $(notdir $(CURDIR))/ $(@:.exe=)
124 sil_showclean =
125 sil_showdiff  = true
126 sil_showlink  = true
127 sil_showtest  = true
128 ver_showclean =
129 ver_showdiff  = true echo
130 ver_showlink  = true echo
131 ver_showtest  = printf "\n$(banner)\nTEST $(notdir $(CURDIR))/ $(@:.exe=)\n$(banner)\n"
132 do_showclean  = $($(DISP)_showclean)
133 do_showdiff   = $($(DISP)_showdiff)
134 do_showlink   = $($(DISP)_showlink)
135 do_showtest   = $($(DISP)_showtest)
136 showclean = @$(do_showclean)
137 showdiff  = @$(do_showdiff)
138 showlink  = @$(do_showlink)
139 showtest  = @$(do_showtest)