[BACK]Return to Makefile CVS log [TXT][DIR] Up to [Development] / linux-2.6-xfs-all / kdb

File: [Development] / linux-2.6-xfs-all / kdb / Makefile (download)

Revision 1.29, Mon Aug 4 17:03:13 2008 UTC (9 years, 2 months ago) by lachlan.longdrop.melbourne.sgi.com
Branch: MAIN
CVS Tags: HEAD
Changes since 1.28: +1 -1 lines

Merge up to 2.6.26
Merge of 2.6.x-xfs-melb:linux:31804b by kenmcd.

#
# This file is subject to the terms and conditions of the GNU General Public
# License.  See the file "COPYING" in the main directory of this archive
# for more details.
#
# Copyright (c) 1999-2004 Silicon Graphics, Inc.  All Rights Reserved.
#

CCVERSION	:= $(shell $(CC) -v 2>&1 | sed -ne '$$p')
obj-y		:= kdb_bt.o kdb_bp.o kdb_id.o kdbsupport.o gen-kdb_cmds.o kdbmain.o kdb_io.o kdbdereference.o
CFLAGS_kdbmain.o += -DCCVERSION="$(CCVERSION)"

subdir-$(CONFIG_KDB_MODULES) := modules
obj-y += $(addsuffix /built-in.o, $(subdir-y))

clean-files := gen-kdb_cmds.c

override CFLAGS := $(CFLAGS:%-pg=% )

# define architecture dependent kdb_cmds
ifeq ($(CONFIG_IA64),y)
	KDB_CMDS = ia64/kdb/kdb_cmds
else
	ifeq ($(CONFIG_X86_64),y)
		KDB_CMDS = x86/kdb/kdb_cmds_64
	else
		ifeq ($(CONFIG_X86_32),y)
			KDB_CMDS = x86/kdb/kdb_cmds_32
		endif
	endif
endif

quiet_cmd_gen-kdb = GENKDB  $@
      cmd_gen-kdb = $(AWK) 'BEGIN {print "\#include <linux/stddef.h>"; print "\#include <linux/init.h>"} \
		/^\#/{next} \
		/^[ \t]*$$/{next} \
		{gsub(/"/, "\\\"", $$0); \
		  print "static __initdata char kdb_cmd" cmds++ "[] = \"" $$0 "\\n\";"} \
		END {print "extern char *kdb_cmds[]; char __initdata *kdb_cmds[] = {"; for (i = 0; i < cmds; ++i) {print "  kdb_cmd" i ","}; print("  NULL\n};");}' \
		$(filter-out %/Makefile,$^) > $@

$(obj)/gen-kdb_cmds.c:	$(src)/kdb_cmds $(wildcard $(TOPDIR)/arch/$(KDB_CMDS)) $(src)/Makefile
	$(call cmd,gen-kdb)