OSDN Git Service

83d1082df4dc353f5521c7ff5dff44e1c5372500
[uclinux-h8/uclibc-ng.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 #
9 # Note: This does not read the top level Rules.mak file
10 #
11
12 top_builddir ?= ../
13
14 TESTDIR=$(top_builddir)test/
15
16 include $(top_builddir)/Rules.mak
17 ifndef TEST_INSTALLED_UCLIBC
18 ifdef UCLIBC_LDSO
19 ifeq (,$(findstring /,$(UCLIBC_LDSO)))
20 UCLIBC_LDSO := $(top_builddir)lib/$(UCLIBC_LDSO)
21 endif
22 else
23 UCLIBC_LDSO := $(firstword $(wildcard $(top_builddir)lib/ld*))
24 endif
25 endif
26 #--------------------------------------------------------
27 # Ensure consistent sort order, 'gcc -print-search-dirs' behavior, etc.
28 LC_ALL:= C
29 export LC_ALL
30
31 ifeq ($(strip $(TARGET_ARCH)),)
32 TARGET_ARCH:=$(shell $(CC) -dumpmachine | sed -e s'/-.*//' \
33         -e 's/i.86/i386/' \
34         -e 's/sparc.*/sparc/' \
35         -e 's/arm.*/arm/g' \
36         -e 's/m68k.*/m68k/' \
37         -e 's/ppc/powerpc/g' \
38         -e 's/v850.*/v850/g' \
39         -e 's/sh[234]/sh/' \
40         -e 's/mips.*/mips/' \
41         -e 's/cris.*/cris/' \
42         -e 's/xtensa.*/xtensa/' \
43         )
44 endif
45 export TARGET_ARCH
46
47
48 #--------------------------------------------------------
49 # If you are running a cross compiler, you will want to set 'CROSS'
50 # to something more interesting...  Target architecture is determined
51 # by asking the CC compiler what arch it compiles things for, so unless
52 # your compiler is broken, you should not need to specify TARGET_ARCH
53 #
54 # Most people will set this stuff on the command line, i.e.
55 #        make CROSS=mipsel-linux-
56 # will build uClibc for 'mipsel'.
57
58 CROSS      = $(subst ",, $(strip $(CROSS_COMPILER_PREFIX)))
59 CC         = $(CROSS)gcc
60 RM         = rm -f
61 RM_R       = $(RM) -r
62
63 # Select the compiler needed to build binaries for your development system
64 HOSTCC     = gcc
65
66
67 #--------------------------------------------------------
68 # A nifty macro to make testing gcc features easier
69 check_gcc=$(shell if $(CC) $(1) -S -o /dev/null -xc /dev/null > /dev/null 2>&1; \
70         then echo "$(1)"; else echo "$(2)"; fi)
71
72 # use '-Os' optimization if available, else use -O2, allow Config to override
73 # Override optimization settings when debugging
74 ifeq ($(DODEBUG),y)
75 OPTIMIZATION    = -O0
76 else
77 OPTIMIZATION   += $(call check_gcc,-Os,-O2)
78 endif
79
80 XWARNINGS      := $(subst ",, $(strip $(WARNINGS))) -Wstrict-prototypes
81 XARCH_CFLAGS   := $(subst ",, $(strip $(ARCH_CFLAGS))) $(CPU_CFLAGS)
82 XCOMMON_CFLAGS := -D_GNU_SOURCE -I$(top_builddir)test
83 CFLAGS         := $(XWARNINGS) $(OPTIMIZATION) $(XCOMMON_CFLAGS) $(XARCH_CFLAGS) -nostdinc -I$(top_builddir)$(LOCAL_INSTALL_PATH)/usr/include
84
85 CC_IPREFIX := $(shell $(CC) --print-file-name=include)
86 CC_INC := -I$(dir $(CC_IPREFIX))include-fixed -I$(CC_IPREFIX)
87 CFLAGS += $(CC_INC)
88
89 HOST_CFLAGS    += $(XWARNINGS) $(OPTIMIZATION) $(XCOMMON_CFLAGS)
90
91 LDFLAGS        := $(CPU_LDFLAGS)
92 ifeq ($(DODEBUG),y)
93         CFLAGS        += -g
94         HOST_CFLAGS   += -g
95         LDFLAGS       += -g
96         HOST_LDFLAGS  += -g
97 else
98         LDFLAGS       += -s
99         HOST_LDFLAGS  += -s
100 endif
101
102 ifneq ($(strip $(HAVE_SHARED)),y)
103         LDFLAGS       += -static
104         HOST_LDFLAGS  += -static
105 endif
106
107 LDFLAGS += -B$(top_builddir)lib -Wl,-rpath,$(top_builddir)lib -Wl,-rpath-link,$(top_builddir)lib
108 UCLIBC_LDSO_ABSPATH=$(shell pwd)
109 ifdef TEST_INSTALLED_UCLIBC
110 LDFLAGS += -Wl,-rpath,./
111 UCLIBC_LDSO_ABSPATH=$(SHARED_LIB_LOADER_PREFIX)
112 endif
113
114 ifeq ($(findstring -static,$(LDFLAGS)),)
115         LDFLAGS += -Wl,--dynamic-linker,$(UCLIBC_LDSO_ABSPATH)/$(UCLIBC_LDSO)
116 endif
117
118 ifeq ($(LDSO_GNU_HASH_SUPPORT),y)
119 # Check for binutils support is done on root Rules.mak
120 LDFLAGS += -Wl,${LDFLAGS_GNUHASH}
121 endif
122
123
124 # Filter output
125 MAKEFLAGS += --no-print-directory
126 ifneq ($(findstring s,$(MAKEFLAGS)),)
127 DISP := sil
128 Q    := @
129 SCAT := -@true
130 else
131 ifneq ($(V)$(VERBOSE),)
132 DISP := ver
133 Q    :=
134 SCAT := cat
135 else
136 DISP := pur
137 Q    := @
138 SCAT := -@true
139 endif
140 endif
141
142 banner := ---------------------------------
143 pur_showclean = echo "  "CLEAN $(notdir $(CURDIR))
144 pur_showdiff  = echo "  "TEST_DIFF $(notdir $(CURDIR))/
145 pur_showlink  = echo "  "TEST_LINK $(notdir $(CURDIR))/ $@
146 pur_showtest  = echo "  "TEST_EXEC $(notdir $(CURDIR))/ $(patsubst %.exe,%,$@)
147 sil_showclean =
148 sil_showdiff  = true
149 sil_showlink  = true
150 sil_showtest  = true
151 ver_showclean =
152 ver_showdiff  = true echo
153 ver_showlink  = true echo
154 ver_showtest  = printf "\n$(banner)\nTEST $(notdir $(PWD))/ $(patsubst %.exe,%,$@)\n$(banner)\n"
155 do_showclean  = $($(DISP)_showclean)
156 do_showdiff   = $($(DISP)_showdiff)
157 do_showlink   = $($(DISP)_showlink)
158 do_showtest   = $($(DISP)_showtest)
159 showclean = @$(do_showclean)
160 showdiff  = @$(do_showdiff)
161 showlink  = @$(do_showlink)
162 showtest  = @$(do_showtest)