summaryrefslogblamecommitdiffstats
path: root/tools/testing/selftests/breakpoints/Makefile
blob: 74e533fd4bc54009d797b99192fb38171d24c005 (plain) (tree)
1
2
3
4
5
6
7
8
9
10

                                                    
                                                                      
 
                  
                             

     

                                     
                  

                 
 
      
                                                      
# Taken from perf makefile
uname_M := $(shell uname -m 2>/dev/null || echo not)
ARCH ?= $(shell echo $(uname_M) | sed -e s/i.86/x86/ -e s/x86_64/x86/)

ifeq ($(ARCH),x86)
TEST_PROGS := breakpoint_test
endif

TEST_PROGS += step_after_suspend_test

all: $(TEST_PROGS)

include ../lib.mk

clean:
	rm -fr breakpoint_test step_after_suspend_test