summaryrefslogblamecommitdiffstats
path: root/tools/perf/config/feature-checks/Makefile
blob: 6a42ad24d64f9cbcf3c4fdb8e345b6825a9a5f34 (plain) (tree)
1
2
3
4
5
6
7
 


                                         
 

               





                                 
           

                


                       

                  


                               
                          

FILES=					\
	test-hello			\
	test-libnuma

CC := $(CC) -MD

all: $(FILES)

BUILD = $(CC) -o $(OUTPUT)$@ $@.c

###############################

test-hello:
	$(BUILD)

test-libnuma:
	$(BUILD) -lnuma

-include *.d */*.d

###############################

clean:
	rm -f $(FILES) *.d