diff options
author | dzu <dzu> | 2003-08-07 14:20:31 +0000 |
---|---|---|
committer | dzu <dzu> | 2003-08-07 14:20:31 +0000 |
commit | 8f713fdfeb3bde6fe89dfb300f22cae9778e35eb (patch) | |
tree | 9298aff917d63f8d218460148f0508674b981049 /tools/Makefile | |
parent | 96e48cf6c14319f87b38a1d3b6ec9139c9d0469d (diff) | |
download | u-boot-imx-8f713fdfeb3bde6fe89dfb300f22cae9778e35eb.zip u-boot-imx-8f713fdfeb3bde6fe89dfb300f22cae9778e35eb.tar.gz u-boot-imx-8f713fdfeb3bde6fe89dfb300f22cae9778e35eb.tar.bz2 |
Removed tools/gdb from "make all" target. Added make target "gdbtools"
in toplevel directory instead. Removed astest.c from tools/gdb because
it is no longer relevant.
Diffstat (limited to 'tools/Makefile')
-rw-r--r-- | tools/Makefile | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/tools/Makefile b/tools/Makefile index de6f7dd..ac35ee3 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -1,5 +1,5 @@ # -# (C) Copyright 2000, 2001 +# (C) Copyright 2000-2003 # Wolfgang Denk, DENX Software Engineering, wd@denx.de. # # See file CREDITS for list of people who contributed to this @@ -65,16 +65,11 @@ TOOLSUBDIRS = # -multiply_defined suppress option to turn off this error. # ifeq ($(HOSTOS)-$(HOSTARCH),darwin-ppc) -TOOLSUBDIRS+= gdb HOST_CFLAGS = -traditional-cpp -Wall HOST_LDFLAGS =-multiply_defined suppress HOST_ENVIRO_CFLAGS = -traditional-cpp else -# -# The gdb tools won't build natively on NetBSD since bfd.h (and ansidecl.h) -# are not installed -- just skip them, they are not really essential. -# ifeq ($(HOSTOS)-$(HOSTARCH),netbsd-ppc) HOST_CFLAGS = -Wall -pedantic HOST_LDFLAGS = @@ -84,7 +79,6 @@ HOST_ENVIRO_CFLAGS = # Everyone else # else -TOOLSUBDIRS+= gdb HOST_CFLAGS = -Wall -pedantic HOST_LDFLAGS = HOST_ENVIRO_CFLAGS = |