mirror of
https://github.com/torvalds/linux.git
synced 2024-11-16 17:12:06 +00:00
285a8f247b
Renaming libapikfs.a to libapi.a, because it's not just 'fs' specific library now. Signed-off-by: Jiri Olsa <jolsa@kernel.org> Tested-by: Sukadev Bhattiprolu <sukadev@linux.vnet.ibm.com> Tested-by: Will Deacon <will.deacon@arm.com> Cc: Alexis Berlemont <alexis.berlemont@gmail.com> Cc: Borislav Petkov <bp@alien8.de> Cc: Corey Ashford <cjashfor@linux.vnet.ibm.com> Cc: David Ahern <dsahern@gmail.com> Cc: Frederic Weisbecker <fweisbec@gmail.com> Cc: Namhyung Kim <namhyung@kernel.org> Cc: Paul Mackerras <paulus@samba.org> Cc: Peter Zijlstra <peterz@infradead.org> Cc: Stephane Eranian <eranian@google.com> Link: http://lkml.kernel.org/n/tip-g1mk5oj2ayq4vn653ovfg3gv@git.kernel.org Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
44 lines
1020 B
Makefile
44 lines
1020 B
Makefile
include ../../scripts/Makefile.include
|
|
include ../../perf/config/utilities.mak # QUIET_CLEAN
|
|
|
|
ifeq ($(srctree),)
|
|
srctree := $(patsubst %/,%,$(dir $(shell pwd)))
|
|
srctree := $(patsubst %/,%,$(dir $(srctree)))
|
|
srctree := $(patsubst %/,%,$(dir $(srctree)))
|
|
#$(info Determined 'srctree' to be $(srctree))
|
|
endif
|
|
|
|
CC = $(CROSS_COMPILE)gcc
|
|
AR = $(CROSS_COMPILE)ar
|
|
|
|
MAKEFLAGS += --no-print-directory
|
|
|
|
LIBFILE = $(OUTPUT)libapi.a
|
|
|
|
CFLAGS := $(EXTRA_WARNINGS) $(EXTRA_CFLAGS)
|
|
CFLAGS += -ggdb3 -Wall -Wextra -std=gnu99 -Werror -O6 -D_FORTIFY_SOURCE=2 -fPIC
|
|
CFLAGS += -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64
|
|
|
|
RM = rm -f
|
|
|
|
build := -f $(srctree)/tools/build/Makefile.build dir=. obj
|
|
API_IN := $(OUTPUT)libapi-in.o
|
|
|
|
export srctree OUTPUT CC LD CFLAGS V
|
|
|
|
all: $(LIBFILE)
|
|
|
|
$(API_IN): FORCE
|
|
@$(MAKE) $(build)=libapi
|
|
|
|
$(LIBFILE): $(API_IN)
|
|
$(QUIET_AR)$(RM) $@ && $(AR) rcs $@ $(API_IN)
|
|
|
|
clean:
|
|
$(call QUIET_CLEAN, libapi) $(RM) $(LIBFILE); \
|
|
find $(if $(OUTPUT),$(OUTPUT),.) -name \*.o | xargs $(RM)
|
|
|
|
FORCE:
|
|
|
|
.PHONY: clean FORCE
|