21 lines · plain
1include ../../../../../build/Build.include2 3UNAME_M := $(shell uname -m)4 5ifneq ($(UNAME_M),s390x)6nothing:7.PHONY: all clean run_tests install8.SILENT:9else10 11TEST_GEN_PROGS := test_uvdevice12 13top_srcdir ?= ../../../../../..14LINUX_TOOL_ARCH_INCLUDE = $(top_srcdir)/tools/arch/$(ARCH)/include15 16CFLAGS += -Wall -Werror -static $(KHDR_INCLUDES) -I$(LINUX_TOOL_ARCH_INCLUDE)17 18include ../../../lib.mk19 20endif21