4 LIBLOCKDEP_VERSION
=$(shell make
--no-print-directory
-sC ..
/..
/.. kernelversion
)
6 # Makefiles suck: This macro sets a default value of $(2) for the
7 # variable named by $(1), unless the variable has been set by
8 # environment or command line. This is necessary for CC and AR
9 # because make sets default values, so the simpler ?= approach
10 # won't work as expected.
12 $(if
$(or
$(findstring environment
,$(origin $(1))),\
13 $(findstring command line
,$(origin $(1)))),,\
17 # Allow setting CC and AR, or setting CROSS_COMPILE as a prefix.
18 $(call allow-override
,CC
,$(CROSS_COMPILE
)gcc
)
19 $(call allow-override
,AR
,$(CROSS_COMPILE
)ar)
23 # Use DESTDIR for installing into a different root directory.
24 # This is useful for building a package. The program will be
25 # installed in this directory as if it was the root directory.
26 # Then the build tool can move it later.
28 DESTDIR_SQ
= '$(subst ','\'',$(DESTDIR
))'
32 libdir = $(prefix)/$(libdir_relative)
34 bindir = $(prefix)/$(bindir_relative)
36 export DESTDIR DESTDIR_SQ INSTALL
38 # copy a bit from Linux kbuild
40 ifeq ("$(origin V)", "command line")
47 ifeq ("$(origin O)", "command line")
52 ifneq ($(BUILD_OUTPUT),)
55 $(if $(VERBOSE:1=),@)$(MAKE) -C $(BUILD_OUTPUT) \
56 BUILD_SRC=$(CURDIR) -f $(CURDIR)/Makefile $1
59 saved-output := $(BUILD_OUTPUT)
60 BUILD_OUTPUT := $(shell cd $(BUILD_OUTPUT) && /bin/pwd)
61 $(if $(BUILD_OUTPUT),, \
62 $(error output directory "$(saved-output)" does not exist))
67 $(call build_output, all_cmd)
69 $(filter-out gui,$(MAKECMDGOALS)): sub-make
72 $(call build_output, $(MAKECMDGOALS))
75 # Leave processing to above invocation of make
81 # We process the rest of the Makefile if this is the final invocation of make
82 ifeq ($(skip-makefile),)
84 srctree := $(realpath $(if $(BUILD_SRC),$(BUILD_SRC),$(CURDIR)))
85 objtree := $(realpath $(CURDIR))
89 export prefix libdir bindir src obj
92 libdir_SQ = $(subst ','\'',$(libdir))
93 bindir_SQ
= $(subst ','\'',$(bindir))
95 LIB_FILE = liblockdep.a liblockdep.so.$(LIBLOCKDEP_VERSION)
107 INCLUDES = -I. -I/usr/local/include -I./uinclude -I./include -I../../include $(CONFIG_INCLUDES)
109 # Set compile option CFLAGS if not set elsewhere
110 CFLAGS ?= -g -DCONFIG_LOCKDEP -DCONFIG_STACKTRACE -DCONFIG_PROVE_LOCKING -DBITS_PER_LONG=__WORDSIZE -DLIBLOCKDEP_VERSION='"$(LIBLOCKDEP_VERSION)"' -rdynamic -O0 -g
112 override CFLAGS += $(CONFIG_FLAGS) $(INCLUDES) $(PLUGIN_DIR_SQ)
119 print_shared_lib_compile =
123 print_compile = echo ' CC
'$(OBJ);
124 print_app_build = echo ' BUILD
'$(OBJ);
125 print_fpic_compile = echo ' CC FPIC
'$(OBJ);
126 print_shared_lib_compile = echo ' BUILD SHARED LIB
'$(OBJ);
127 print_static_lib_build = echo ' BUILD STATIC LIB
'$(OBJ);
128 print_install = echo ' INSTALL
'$1' to
$(DESTDIR_SQ
)$2';
132 ($(print_fpic_compile) \
133 $(CC) -c $(CFLAGS) $(EXT) -fPIC $< -o $@)
136 ($(print_app_build) \
137 $(CC) $^ -rdynamic -o $@ $(CONFIG_LIBS) $(LIBS))
139 do_compile_shared_library = \
140 ($(print_shared_lib_compile) \
141 $(CC) --shared $^ -o $@ -lpthread -ldl -Wl,-soname='"$@"';$(shell ln -s $@ liblockdep.so))
143 do_build_static_lib = \
144 ($(print_static_lib_build) \
145 $(RM) $@; $(AR) rcs $@ $^)
150 $(CC) -c $(CFLAGS) $(EXT) $< -o $(obj)/$@;
153 $(obj)/%.o: $(src)/%.c
154 $(Q)$(call do_compile)
157 $(Q)$(call do_compile)
159 PEVENT_LIB_OBJS = common.o lockdep.o preload.o rbtree.o
161 ALL_OBJS = $(PEVENT_LIB_OBJS)
163 CMD_TARGETS = $(LIB_FILE)
165 TARGETS = $(CMD_TARGETS)
170 all_cmd: $(CMD_TARGETS)
172 liblockdep.so.$(LIBLOCKDEP_VERSION): $(PEVENT_LIB_OBJS)
173 $(Q)$(do_compile_shared_library)
175 liblockdep.a: $(PEVENT_LIB_OBJS)
176 $(Q)$(do_build_static_lib)
178 $(PEVENT_LIB_OBJS): %.o: $(src)/%.c
179 $(Q)$(do_fpic_compile)
183 all_objs := $(sort $(ALL_OBJS))
184 all_deps := $(all_objs:%.o=.%.d)
186 # let .d file also depends on the source and header files
189 $(CC) -MM $(CFLAGS) $< > $@.$$$$; \
190 sed 's
,\
($*\
)\.o
[ :]*,\
1.o
$@
: ,g
' < $@.$$$$ > $@; \
194 $(all_deps): .%.d: $(src)/%.c
195 $(Q)$(call check_deps)
197 $(all_objs) : %.o : .%.d
199 dep_includes := $(wildcard $(all_deps))
201 ifneq ($(dep_includes),)
202 include $(dep_includes)
205 ### Detect environment changes
206 TRACK_CFLAGS = $(subst ','\'',$(CFLAGS
)):$(ARCH
):$(CROSS_COMPILE
)
210 find .
-name
'*.[ch]' | xargs ctags
--extra
=+f
--c-kinds
=+px \
211 --regex-c
++='/_PE\(([^,)]*).*/PEVENT_ERRNO__\1/'
215 find .
-name
'*.[ch]' | xargs etags \
216 --regex
='/_PE(\([^,)]*\).*/PEVENT_ERRNO__\1/'
220 if
[ ! -d
'$(DESTDIR_SQ)$2' ]; then \
221 $(INSTALL
) -d
-m
755 '$(DESTDIR_SQ)$2'; \
223 $(INSTALL
) $1 '$(DESTDIR_SQ)$2'
227 $(Q
)$(call do_install
,$(LIB_FILE
),$(libdir_SQ
))
228 $(Q
)$(call do_install
,$(BIN_FILE
),$(bindir_SQ
))
233 $(RM
) *.o
*~
$(TARGETS
) *.a
*liblockdep
*.so
* $(VERSION_FILES
) .
*.d
236 endif # skip-makefile
241 # Declare the contents of the .PHONY variable as phony. We keep that
242 # information in a variable so we can use it in if_changed and friends.