OSDN Git Service

Allow 'make clean' on the test stuff to work with the new config system.
[uclinux-h8/uClibc.git] / test / Rules.mak
1 # Rules.make for uClibc test apps.
2 #
3 # Copyright (C) 2001 by Lineo, inc.
4 #
5 #
6 #Note: This does not read the top level Rules.mak file
7 #
8
9 -include $(TESTDIR)../.config
10 include $(TESTDIR)Config
11
12
13 # Use NATIVE_ARCH here since running these test is not
14 # even possible when cross compiling...
15 NATIVE_ARCH:= ${shell uname -m | sed \
16                 -e 's/i.86/i386/' \
17                 -e 's/sparc.*/sparc/' \
18                 -e 's/arm.*/arm/g' \
19                 -e 's/m68k.*/m68k/' \
20                 -e 's/ppc/powerpc/g' \
21                 -e 's/v850.*/v850/g' \
22                 -e 's/sh[234].*/sh/' \
23                 -e 's/mips.*/mips/' \
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                 }
36 endif
37
38
39 # If you are running a cross compiler, you may want to set this
40 # to something more interesting...
41 CC = ../$(TESTDIR)extra/gcc-uClibc/$(TARGET_ARCH)-uclibc-gcc
42 HOST_CC = gcc
43 STRIPTOOL=strip
44 LDD = ../$(TESTDIR)ldso/util/ldd
45
46
47 # Check if 'ls -sh' works or not
48 LSFLAGS = -l
49
50 # turn all the warnings on
51 WARNINGS=-Wall
52
53 # use '-Os' optimization if available, else use -O2
54 OPTIMIZATION = ${shell if $(CC) -Os -S -o /dev/null -xc /dev/null >/dev/null 2>&1; \
55     then echo "-Os"; else echo "-O2" ; fi}
56
57 ifeq ($(DODEBUG),true)
58     CFLAGS +=$(WARNINGS) $(OPTIMIZATION) -g
59     GLIBC_CFLAGS +=$(WARNINGS) $(OPTIMIZATION) -g
60     LDFLAGS =-Wl,-warn-common
61     GLIBC_LDFLAGS =-Wl,-warn-common 
62     STRIPTOOL =true -Since_we_are_debugging
63 else
64     CFLAGS  +=$(WARNINGS) $(OPTIMIZATION) -fomit-frame-pointer
65     GLIBC_CFLAGS  +=$(WARNINGS) $(OPTIMIZATION) -fomit-frame-pointer
66     LDFLAGS  =-s -Wl,-warn-common
67     GLIBC_LDFLAGS  =-s -Wl,-warn-common
68     STRIP    = $(STRIPTOOL) --remove-section=.note --remove-section=.comment $(PROG)
69 endif
70
71 ifneq ($(DODYNAMIC),true)
72     LDFLAGS +=--static
73     GLIBC_LDFLAGS +=--static
74 endif
75 CFLAGS+=--uclibc-use-build-dir
76 LDFLAGS+=--uclibc-use-build-dir