| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 | # Rules.make for uClibc test apps.## Copyright (C) 2001 by Lineo, inc.###Note: This does not read the top level Rules.mak file#-include $(TESTDIR)../.configinclude $(TESTDIR)Config#--------------------------------------------------------# Ensure consistent sort order, 'gcc -print-search-dirs' behavior, etc. LC_ALL:= Cexport LC_ALLifeq ($(strip $(TARGET_ARCH)),)TARGET_ARCH:=$(shell $(CC) -dumpmachine | sed -e s'/-.*//' \		-e 's/i.86/i386/' \		-e 's/sparc.*/sparc/' \		-e 's/arm.*/arm/g' \		-e 's/m68k.*/m68k/' \		-e 's/ppc/powerpc/g' \		-e 's/v850.*/v850/g' \		-e 's/sh[234]/sh/' \		-e 's/mips-.*/mips/' \		-e 's/mipsel-.*/mipsel/' \		-e 's/cris.*/cris/' \		)endifexport TARGET_ARCH#--------------------------------------------------------# If you are running a cross compiler, you will want to set 'CROSS'# to something more interesting...  Target architecture is determined# by asking the CC compiler what arch it compiles things for, so unless# your compiler is broken, you should not need to specify TARGET_ARCH## Most people will set this stuff on the command line, i.e.#        make CROSS=mipsel-linux-# will build uClibc for 'mipsel'.CROSS=CC= $(CROSS)gccSTRIPTOOL=stripLDD=../$(TESTDIR)ldso/util/lddRM= rm -f# Select the compiler needed to build binaries for your development systemHOSTCC=gccHOSTCFLAGS=-O2 -Wall#--------------------------------------------------------# Check if 'ls -sh' works or notLSFLAGS = -l# A nifty macro to make testing gcc features easiercheck_gcc=$(shell if $(CC) $(1) -S -o /dev/null -xc /dev/null > /dev/null 2>&1; \	then echo "$(1)"; else echo "$(2)"; fi)# use '-Os' optimization if available, else use -O2, allow Config to overrideOPTIMIZATION+=$(call check_gcc,-Os,-O2)# Override optimization settings when debuggingifeq ($(DODEBUG),true)OPTIMIZATION=-O0endifXWARNINGS=$(subst ",, $(strip $(WARNINGS))) -Wstrict-prototypesXARCH_CFLAGS=$(subst ",, $(strip $(ARCH_CFLAGS)))CFLAGS=$(XWARNINGS) $(OPTIMIZATION) $(XARCH_CFLAGS)GLIBC_CFLAGS+=$(XWARNINGS) $(OPTIMIZATION)LDFLAGS=ifeq ($(DODEBUG),true)    CFLAGS+=-g    GLIBC_CFLAGS+=-g    LDFLAGS += -g -Wl,-warn-common    GLIBC_LDFLAGS =-g -Wl,-warn-common     STRIPTOOL =true -Since_we_are_debuggingelse    LDFLAGS  +=-s -Wl,-warn-common    GLIBC_LDFLAGS  =-s -Wl,-warn-common    STRIP    = $(STRIPTOOL) --remove-section=.note --remove-section=.comment $(PROG)endififneq ($(DODYNAMIC),true)    LDFLAGS +=-static    GLIBC_LDFLAGS +=-staticendif
 |