Makefile (bf61c8840efe60fd8f91446860b63338fb424158) | Makefile (5e29a9105b1a0da86eff0ad6ae015997b49d4d1d) |
---|---|
1# Taken from perf makefile 2uname_M := $(shell uname -m 2>/dev/null || echo not) 3ARCH ?= $(shell echo $(uname_M) | sed -e s/i.86/i386/) 4ifeq ($(ARCH),i386) 5 ARCH := x86 6endif 7ifeq ($(ARCH),x86_64) 8 ARCH := x86 9endif 10 11 12all: 13ifeq ($(ARCH),x86) 14 gcc breakpoint_test.c -o breakpoint_test 15else 16 echo "Not an x86 target, can't build breakpoints selftests" 17endif 18 | 1# Taken from perf makefile 2uname_M := $(shell uname -m 2>/dev/null || echo not) 3ARCH ?= $(shell echo $(uname_M) | sed -e s/i.86/i386/) 4ifeq ($(ARCH),i386) 5 ARCH := x86 6endif 7ifeq ($(ARCH),x86_64) 8 ARCH := x86 9endif 10 11 12all: 13ifeq ($(ARCH),x86) 14 gcc breakpoint_test.c -o breakpoint_test 15else 16 echo "Not an x86 target, can't build breakpoints selftests" 17endif 18 |
19run_tests: 20 @./breakpoint_test || echo "breakpoints selftests: [FAIL]" | 19TEST_PROGS := breakpoint_test |
21 | 20 |
21include ../lib.mk 22 |
|
22clean: 23 rm -fr breakpoint_test | 23clean: 24 rm -fr breakpoint_test |