[uClibc-cvs] svn commit: trunk/uClibc/test

vapier at uclibc.org vapier at uclibc.org
Wed Jun 29 23:06:50 UTC 2005


Author: vapier
Date: 2005-06-29 17:06:49 -0600 (Wed, 29 Jun 2005)
New Revision: 10632

Log:
clean up and use topdir .config instead of local Config

Removed:
   trunk/uClibc/test/Config

Modified:
   trunk/uClibc/test/Rules.mak


Changeset:
Deleted: trunk/uClibc/test/Config
===================================================================
--- trunk/uClibc/test/Config	2005-06-29 22:58:06 UTC (rev 10631)
+++ trunk/uClibc/test/Config	2005-06-29 23:06:49 UTC (rev 10632)
@@ -1,9 +0,0 @@
-# Configuration for uClibc test apps.
-
-# Set the following to `true' to make a debuggable build.
-DODEBUG = true
-
-# If you want to compile using uClibc as a shared library, turn this on.
-DODYNAMIC = true
-
-

Modified: trunk/uClibc/test/Rules.mak
===================================================================
--- trunk/uClibc/test/Rules.mak	2005-06-29 22:58:06 UTC (rev 10631)
+++ trunk/uClibc/test/Rules.mak	2005-06-29 23:06:49 UTC (rev 10632)
@@ -1,14 +1,15 @@
-# Rules.make for uClibc test apps.
+# Rules.mak for uClibc test subdirs
 #
 # Copyright (C) 2001 by Lineo, inc.
 #
+# Note: This does not read the top level Rules.mak file
 #
-#Note: This does not read the top level Rules.mak file
-#
 
--include $(TESTDIR)../.config
-include $(TESTDIR)Config
+TOPDIR = ../../
+TESTDIR=$(TOPDIR)test/
 
+-include $(TOPDIR).config
+
 #--------------------------------------------------------
 # Ensure consistent sort order, 'gcc -print-search-dirs' behavior, etc. 
 LC_ALL:= C
@@ -16,17 +17,17 @@
 
 ifeq ($(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/' \
-		)
+	-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/' \
+	)
 endif
 export TARGET_ARCH
 
@@ -41,16 +42,15 @@
 #        make CROSS=mipsel-linux-
 # will build uClibc for 'mipsel'.
 
-CROSS=
-CC= $(CROSS)gcc
-STRIPTOOL=strip
-LDD=../$(TOPDIR)/utils/ldd
+CROSS      =
+CC         = $(CROSS)gcc
+STRIPTOOL  = strip
+LDD        = $(TOPDIR)utils/ldd
+RM         = rm -f
 
-RM= rm -f
-
 # Select the compiler needed to build binaries for your development system
-HOSTCC=gcc
-HOSTCFLAGS=-O2 -Wall
+HOSTCC     = gcc
+HOSTCFLAGS = -O2 -Wall
 
 
 #--------------------------------------------------------
@@ -62,31 +62,32 @@
 	then echo "$(1)"; else echo "$(2)"; fi)
 
 # use '-Os' optimization if available, else use -O2, allow Config to override
-OPTIMIZATION+=$(call check_gcc,-Os,-O2)
 # Override optimization settings when debugging
-ifeq ($(DODEBUG),true)
-OPTIMIZATION=-O0
+ifeq ($(DODEBUG),y)
+OPTIMIZATION    = -O0
+else
+OPTIMIZATION   += $(call check_gcc,-Os,-O2)
 endif
 
-XWARNINGS=$(subst ",, $(strip $(WARNINGS))) -Wstrict-prototypes
-XARCH_CFLAGS=$(subst ",, $(strip $(ARCH_CFLAGS)))
-CFLAGS=$(XWARNINGS) $(OPTIMIZATION) $(XARCH_CFLAGS)
-GLIBC_CFLAGS+=$(XWARNINGS) $(OPTIMIZATION)
-LDFLAGS=
+XWARNINGS       = $(subst ",, $(strip $(WARNINGS))) -Wstrict-prototypes
+XARCH_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_debugging
+ifeq ($(DODEBUG),y)
+	CFLAGS        += -g
+	GLIBC_CFLAGS  += -g
+	LDFLAGS       += -g -Wl,-warn-common
+	GLIBC_LDFLAGS  = -g -Wl,-warn-common 
+	STRIPTOOL      = true -Since_we_are_debugging
 else
-    LDFLAGS  +=-s -Wl,-warn-common
-    GLIBC_LDFLAGS  =-s -Wl,-warn-common
-    STRIP    = $(STRIPTOOL) --remove-section=.note --remove-section=.comment $(PROG)
+	LDFLAGS       += -s -Wl,-warn-common
+	GLIBC_LDFLAGS  = -s -Wl,-warn-common
+	STRIP          = $(STRIPTOOL) --remove-section=.note --remove-section=.comment $(PROG)
 endif
 
-ifneq ($(DODYNAMIC),true)
-    LDFLAGS +=-static
-    GLIBC_LDFLAGS +=-static
+ifneq ($(strip $(HAVE_SHARED)),y)
+	LDFLAGS       += -static
+	GLIBC_LDFLAGS += -static
 endif




More information about the uClibc-cvs mailing list