diff options
| author | Russell King <rmk+kernel@arm.linux.org.uk> | 2009-12-06 12:00:33 -0500 |
|---|---|---|
| committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2009-12-06 12:00:33 -0500 |
| commit | 3d14b5beba35250c548d3851a2b84fce742d8311 (patch) | |
| tree | 065e3d93c3fcbc5ee4c44fa78662393cddbdf6de /arch/x86/tools/Makefile | |
| parent | 0719dc341389882cc834ed18fc9b7fc6006b2b85 (diff) | |
| parent | 1bf8e6219552d5dd27012d567ec8c4bb9c2d86b4 (diff) | |
Merge branch 'sa1100' into devel
Diffstat (limited to 'arch/x86/tools/Makefile')
| -rw-r--r-- | arch/x86/tools/Makefile | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/arch/x86/tools/Makefile b/arch/x86/tools/Makefile new file mode 100644 index 000000000000..f82082677337 --- /dev/null +++ b/arch/x86/tools/Makefile | |||
| @@ -0,0 +1,31 @@ | |||
| 1 | PHONY += posttest | ||
| 2 | |||
| 3 | ifeq ($(KBUILD_VERBOSE),1) | ||
| 4 | posttest_verbose = -v | ||
| 5 | else | ||
| 6 | posttest_verbose = | ||
| 7 | endif | ||
| 8 | |||
| 9 | ifeq ($(CONFIG_64BIT),y) | ||
| 10 | posttest_64bit = -y | ||
| 11 | else | ||
| 12 | posttest_64bit = -n | ||
| 13 | endif | ||
| 14 | |||
| 15 | distill_awk = $(srctree)/arch/x86/tools/distill.awk | ||
| 16 | chkobjdump = $(srctree)/arch/x86/tools/chkobjdump.awk | ||
| 17 | |||
| 18 | quiet_cmd_posttest = TEST $@ | ||
| 19 | cmd_posttest = ($(OBJDUMP) -v | $(AWK) -f $(chkobjdump)) || $(OBJDUMP) -d -j .text $(objtree)/vmlinux | $(AWK) -f $(distill_awk) | $(obj)/test_get_len $(posttest_64bit) $(posttest_verbose) | ||
| 20 | |||
| 21 | posttest: $(obj)/test_get_len vmlinux | ||
| 22 | $(call cmd,posttest) | ||
| 23 | |||
| 24 | hostprogs-y := test_get_len | ||
| 25 | |||
| 26 | # -I needed for generated C source and C source which in the kernel tree. | ||
| 27 | HOSTCFLAGS_test_get_len.o := -Wall -I$(objtree)/arch/x86/lib/ -I$(srctree)/arch/x86/include/ -I$(srctree)/arch/x86/lib/ -I$(srctree)/include/ | ||
| 28 | |||
| 29 | # Dependencies are also needed. | ||
| 30 | $(obj)/test_get_len.o: $(srctree)/arch/x86/lib/insn.c $(srctree)/arch/x86/lib/inat.c $(srctree)/arch/x86/include/asm/inat_types.h $(srctree)/arch/x86/include/asm/inat.h $(srctree)/arch/x86/include/asm/insn.h $(objtree)/arch/x86/lib/inat-tables.c | ||
| 31 | |||
