Merge tag 'pci-v3.15-changes' of git://git.kernel.org/pub/scm/linux/kernel/git/helgaa...
[deliverable/linux.git] / tools / lib / api / Makefile
1 include ../../scripts/Makefile.include
2 include ../../perf/config/utilities.mak # QUIET_CLEAN
3
4 CC = $(CROSS_COMPILE)gcc
5 AR = $(CROSS_COMPILE)ar
6
7 # guard against environment variables
8 LIB_H=
9 LIB_OBJS=
10
11 LIB_H += fs/debugfs.h
12 LIB_H += fs/fs.h
13
14 LIB_OBJS += $(OUTPUT)fs/debugfs.o
15 LIB_OBJS += $(OUTPUT)fs/fs.o
16
17 LIBFILE = libapikfs.a
18
19 CFLAGS = -ggdb3 -Wall -Wextra -std=gnu99 -Werror -O6 -D_FORTIFY_SOURCE=2 $(EXTRA_WARNINGS) $(EXTRA_CFLAGS) -fPIC
20 EXTLIBS = -lelf -lpthread -lrt -lm
21 ALL_CFLAGS = $(CFLAGS) $(BASIC_CFLAGS) -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64
22 ALL_LDFLAGS = $(LDFLAGS)
23
24 RM = rm -f
25
26 $(LIBFILE): $(LIB_OBJS)
27 $(QUIET_AR)$(RM) $@ && $(AR) rcs $(OUTPUT)$@ $(LIB_OBJS)
28
29 $(LIB_OBJS): $(LIB_H)
30
31 libapi_dirs:
32 $(QUIET_MKDIR)mkdir -p $(OUTPUT)fs/
33
34 $(OUTPUT)%.o: %.c libapi_dirs
35 $(QUIET_CC)$(CC) -o $@ -c $(ALL_CFLAGS) $<
36 $(OUTPUT)%.s: %.c libapi_dirs
37 $(QUIET_CC)$(CC) -S $(ALL_CFLAGS) $<
38 $(OUTPUT)%.o: %.S libapi_dirs
39 $(QUIET_CC)$(CC) -o $@ -c $(ALL_CFLAGS) $<
40
41 clean:
42 $(call QUIET_CLEAN, libapi) $(RM) $(LIB_OBJS) $(LIBFILE)
43
44 .PHONY: clean
This page took 0.032318 seconds and 5 git commands to generate.