OSDN Git Service

Change HOSTCFLAGS to BUILD_CFLAGS proposed by vapier
[uclinux-h8/uClibc.git] / test / Rules.mak
1 # Rules.mak for uClibc test subdirs
2 #
3 # Copyright (C) 2001 by Lineo, inc.
4 # Copyright (C) 2000-2005 Erik Andersen <andersen@uclibc.org>
5 #
6 # Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
7 #
8 # Note: This does not read the top level Rules.mak file
9 #
10
11 top_builddir = ../../
12 TESTDIR=$(top_builddir)test/
13
14 -include $(top_builddir).config
15
16 ifndef UCLIBC_LDSO
17 UCLIBC_LDSO := ld-uClibc.so.0
18 endif
19
20 #--------------------------------------------------------
21 # Ensure consistent sort order, 'gcc -print-search-dirs' behavior, etc. 
22 LC_ALL:= C
23 export LC_ALL
24
25 ifeq ($(strip $(TARGET_ARCH)),)
26 TARGET_ARCH:=$(shell $(CC) -dumpmachine | sed -e s'/-.*//' \
27         -e 's/i.86/i386/' \
28         -e 's/sparc.*/sparc/' \
29         -e 's/arm.*/arm/g' \
30         -e 's/m68k.*/m68k/' \
31         -e 's/ppc/powerpc/g' \
32         -e 's/v850.*/v850/g' \
33         -e 's/sh[234]/sh/' \
34         -e 's/mips-.*/mips/' \
35         -e 's/mipsel-.*/mipsel/' \
36         -e 's/cris.*/cris/' \
37         )
38 endif
39 export TARGET_ARCH
40
41
42 #--------------------------------------------------------
43 # If you are running a cross compiler, you will want to set 'CROSS'
44 # to something more interesting...  Target architecture is determined
45 # by asking the CC compiler what arch it compiles things for, so unless
46 # your compiler is broken, you should not need to specify TARGET_ARCH
47 #
48 # Most people will set this stuff on the command line, i.e.
49 #        make CROSS=mipsel-linux-
50 # will build uClibc for 'mipsel'.
51
52 CROSS      = $(subst ",, $(strip $(CROSS_COMPILER_PREFIX)))
53 CC         = $(CROSS)gcc
54 STRIPTOOL  = strip
55 RM         = rm -f
56 ifeq ($(LDSO_LDD_SUPPORT),y)
57 LDD        = $(top_builddir)utils/ldd
58 else
59 LDD        = @true
60 endif
61
62 # Select the compiler needed to build binaries for your development system
63 HOSTCC     = gcc
64 BUILD_CFLAGS = -O2 -Wall
65
66
67 #--------------------------------------------------------
68 # Check if 'ls -sh' works or not
69 LSFLAGS = -l
70
71 # A nifty macro to make testing gcc features easier
72 check_gcc=$(shell if $(CC) $(1) -S -o /dev/null -xc /dev/null > /dev/null 2>&1; \
73         then echo "$(1)"; else echo "$(2)"; fi)
74
75 # use '-Os' optimization if available, else use -O2, allow Config to override
76 # Override optimization settings when debugging
77 ifeq ($(DODEBUG),y)
78 OPTIMIZATION    = -O0
79 else
80 OPTIMIZATION   += $(call check_gcc,-Os,-O2)
81 endif
82
83 XWARNINGS       = $(subst ",, $(strip $(WARNINGS))) -Wstrict-prototypes
84 XARCH_CFLAGS    = $(subst ",, $(strip $(ARCH_CFLAGS)))
85 CFLAGS          = $(XWARNINGS) $(OPTIMIZATION) $(XARCH_CFLAGS)
86 GLIBC_CFLAGS   += $(XWARNINGS) $(OPTIMIZATION)
87 LDFLAGS         = 
88
89 ifeq ($(DODEBUG),y)
90         CFLAGS        += -g
91         GLIBC_CFLAGS  += -g
92         LDFLAGS       += -g -Wl,-warn-common
93         GLIBC_LDFLAGS  = -g -Wl,-warn-common 
94         STRIPTOOL      = true -Since_we_are_debugging
95 else
96         LDFLAGS       += -s -Wl,-warn-common
97         GLIBC_LDFLAGS  = -s -Wl,-warn-common
98         STRIP          = $(STRIPTOOL) --remove-section=.note --remove-section=.comment $(PROG)
99 endif
100
101 ifneq ($(strip $(HAVE_SHARED)),y)
102         LDFLAGS       += -static
103         GLIBC_LDFLAGS += -static
104 else
105         LDFLAGS       += -Wl,-dynamic-linker,$(top_builddir)lib/$(UCLIBC_LDSO)
106 endif