Back to home page

OSCL-LXR

 
 

    


0001 include ../../../../../build/Build.include
0002 
0003 UNAME_M := $(shell uname -m)
0004 
0005 ifneq ($(UNAME_M),s390x)
0006 nothing:
0007 .PHONY: all clean run_tests install
0008 .SILENT:
0009 else
0010 
0011 TEST_GEN_PROGS := test_uvdevice
0012 
0013 top_srcdir ?= ../../../../../..
0014 khdr_dir = $(top_srcdir)/usr/include
0015 LINUX_TOOL_ARCH_INCLUDE = $(top_srcdir)/tools/arch/$(ARCH)/include 
0016 
0017 CFLAGS += -Wall -Werror -static -I$(khdr_dir) -I$(LINUX_TOOL_ARCH_INCLUDE)
0018 
0019 include ../../../lib.mk
0020 
0021 endif