1include ../../scripts/Makefile.include 2include ../../perf/config/utilities.mak # QUIET_CLEAN 3 4ifeq ($(srctree),) 5srctree := $(patsubst %/,%,$(dir $(shell pwd))) 6srctree := $(patsubst %/,%,$(dir $(srctree))) 7srctree := $(patsubst %/,%,$(dir $(srctree))) 8#$(info Determined 'srctree' to be $(srctree)) 9endif 10 11CC = $(CROSS_COMPILE)gcc 12AR = $(CROSS_COMPILE)ar 13 14MAKEFLAGS += --no-print-directory 15 16LIBFILE = $(OUTPUT)libapi.a 17 18CFLAGS := $(EXTRA_WARNINGS) $(EXTRA_CFLAGS) 19CFLAGS += -ggdb3 -Wall -Wextra -std=gnu99 -Werror -O6 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -fPIC 20CFLAGS += -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 21 22RM = rm -f 23 24API_IN := $(OUTPUT)libapi-in.o 25 26all: 27 28export srctree OUTPUT CC LD CFLAGS V 29include $(srctree)/tools/build/Makefile.include 30 31all: fixdep $(LIBFILE) 32 33$(API_IN): FORCE 34 @$(MAKE) $(build)=libapi 35 36$(LIBFILE): $(API_IN) 37 $(QUIET_AR)$(RM) $@ && $(AR) rcs $@ $(API_IN) 38 39clean: 40 $(call QUIET_CLEAN, libapi) $(RM) $(LIBFILE); \ 41 find $(if $(OUTPUT),$(OUTPUT),.) -name \*.o -or -name \*.o.cmd -or -name \*.o.d | xargs $(RM) 42 43FORCE: 44 45.PHONY: clean FORCE 46