Merge tag 'scsi-misc' of git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi
[deliverable/linux.git] / tools / lib / subcmd / Makefile
CommitLineData
4b6ab94e 1include ../../scripts/Makefile.include
ca70c24f 2include ../../scripts/utilities.mak # QUIET_CLEAN
4b6ab94e
JP
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
c1d45c3a
JP
11CC ?= $(CROSS_COMPILE)gcc
12LD ?= $(CROSS_COMPILE)ld
13AR ?= $(CROSS_COMPILE)ar
14
4b6ab94e
JP
15RM = rm -f
16
17MAKEFLAGS += --no-print-directory
18
19LIBFILE = $(OUTPUT)libsubcmd.a
20
21CFLAGS := $(EXTRA_WARNINGS) $(EXTRA_CFLAGS)
fd01d06a
CP
22CFLAGS += -ggdb3 -Wall -Wextra -std=gnu99 -O6 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -fPIC
23
24# Treat warnings as errors unless directed not to
25ifneq ($(WERROR),0)
26 CFLAGS += -Werror
27endif
28
4b6ab94e
JP
29CFLAGS += -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE
30
31CFLAGS += -I$(srctree)/tools/include/
32CFLAGS += -I$(srctree)/include/uapi
33CFLAGS += -I$(srctree)/include
34
35SUBCMD_IN := $(OUTPUT)libsubcmd-in.o
36
37all:
38
39export srctree OUTPUT CC LD CFLAGS V
40include $(srctree)/tools/build/Makefile.include
41
42all: fixdep $(LIBFILE)
43
44$(SUBCMD_IN): FORCE
45 @$(MAKE) $(build)=libsubcmd
46
47$(LIBFILE): $(SUBCMD_IN)
48 $(QUIET_AR)$(RM) $@ && $(AR) rcs $@ $(SUBCMD_IN)
49
50clean:
51 $(call QUIET_CLEAN, libsubcmd) $(RM) $(LIBFILE); \
52 find $(if $(OUTPUT),$(OUTPUT),.) -name \*.o -or -name \*.o.cmd -or -name \*.o.d | xargs $(RM)
53
54FORCE:
55
56.PHONY: clean FORCE
This page took 0.048146 seconds and 5 git commands to generate.