rtc: rtc-ab-b5ze-s3: add sub-minute alarm support
[linux/fpc-iii.git] / tools / testing / selftests / breakpoints / Makefile
blobe18b42b254af814d7eb03f9459a2d24f67397077
1 # Taken from perf makefile
2 uname_M := $(shell uname -m 2>/dev/null || echo not)
3 ARCH ?= $(shell echo $(uname_M) | sed -e s/i.86/i386/)
4 ifeq ($(ARCH),i386)
5 ARCH := x86
6 endif
7 ifeq ($(ARCH),x86_64)
8 ARCH := x86
9 endif
12 all:
13 ifeq ($(ARCH),x86)
14 gcc breakpoint_test.c -o breakpoint_test
15 else
16 echo "Not an x86 target, can't build breakpoints selftests"
17 endif
19 run_tests:
20 @./breakpoint_test || echo "breakpoints selftests: [FAIL]"
22 clean:
23 rm -fr breakpoint_test