mk: shared libraries
[dpdk.git] / mk / rte.lib.mk
1 #   BSD LICENSE
2
3 #   Copyright(c) 2010-2013 Intel Corporation. All rights reserved.
4 #   All rights reserved.
5
6 #   Redistribution and use in source and binary forms, with or without
7 #   modification, are permitted provided that the following conditions
8 #   are met:
9
10 #     * Redistributions of source code must retain the above copyright
11 #       notice, this list of conditions and the following disclaimer.
12 #     * Redistributions in binary form must reproduce the above copyright
13 #       notice, this list of conditions and the following disclaimer in
14 #       the documentation and/or other materials provided with the
15 #       distribution.
16 #     * Neither the name of Intel Corporation nor the names of its
17 #       contributors may be used to endorse or promote products derived
18 #       from this software without specific prior written permission.
19
20 #   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21 #   "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22 #   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
23 #   A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
24 #   OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
25 #   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
26 #   LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27 #   DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28 #   THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29 #   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
30 #   OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31
32 include $(RTE_SDK)/mk/internal/rte.compile-pre.mk
33 include $(RTE_SDK)/mk/internal/rte.install-pre.mk
34 include $(RTE_SDK)/mk/internal/rte.clean-pre.mk
35 include $(RTE_SDK)/mk/internal/rte.build-pre.mk
36 include $(RTE_SDK)/mk/internal/rte.depdirs-pre.mk
37
38 # VPATH contains at least SRCDIR
39 VPATH += $(SRCDIR)
40
41 ifeq ($(RTE_BUILD_SHARED_LIB),y)
42 LIB := $(patsubst %.a,%.so,$(LIB))
43 endif
44
45 _BUILD = $(LIB)
46 _INSTALL = $(INSTALL-FILES-y) $(SYMLINK-FILES-y) $(RTE_OUTPUT)/lib/$(LIB)
47 _CLEAN = doclean
48
49 .PHONY: all
50 all: install
51
52 .PHONY: install
53 install: build _postinstall
54
55 _postinstall: build
56
57 .PHONY: build
58 build: _postbuild
59
60 exe2cmd = $(strip $(call dotfile,$(patsubst %,%.cmd,$(1))))
61
62 O_TO_A = $(AR) crus $(LIB) $(OBJS-y)
63 O_TO_A_STR = $(subst ','\'',$(O_TO_A)) #'# fix syntax highlight
64 O_TO_A_DISP = $(if $(V),"$(O_TO_A_STR)","  AR $(@)")
65 O_TO_A_CMD = "cmd_$@ = $(O_TO_A_STR)"
66 O_TO_A_DO = @set -e; \
67         echo $(O_TO_A_DISP); \
68         $(O_TO_A) && \
69         echo $(O_TO_A_CMD) > $(call exe2cmd,$(@))
70
71 O_TO_S = $(LD) $(CPU_LDFLAGS) -z muldefs -share $(OBJS-y) -o $(LIB)
72 O_TO_S_STR = $(subst ','\'',$(O_TO_S)) #'# fix syntax highlight
73 O_TO_S_DISP = $(if $(V),"$(O_TO_S_STR)","  LD $(@)")
74 O_TO_S_DO = @set -e; \
75         echo $(O_TO_S_DISP); \
76         $(O_TO_S) && \
77         echo $(O_TO_S_CMD) > $(call exe2cmd,$(@))
78
79 -include .$(LIB).cmd
80
81 #
82 # Archive objects in .a file if needed
83 #
84 ifeq ($(RTE_BUILD_SHARED_LIB),y)
85 $(LIB): $(OBJS-y) $(DEP_$(LIB)) FORCE
86         @[ -d $(dir $@) ] || mkdir -p $(dir $@)
87         $(if $(D),\
88                 @echo -n "$< -> $@ " ; \
89                 echo -n "file_missing=$(call boolean,$(file_missing)) " ; \
90                 echo -n "cmdline_changed=$(call boolean,$(call cmdline_changed,$(O_TO_S_STR))) " ; \
91                 echo -n "depfile_missing=$(call boolean,$(depfile_missing)) " ; \
92                 echo "depfile_newer=$(call boolean,$(depfile_newer)) ")
93         $(if $(or \
94                 $(file_missing),\
95                 $(call cmdline_changed,$(O_TO_S_STR)),\
96                 $(depfile_missing),\
97                 $(depfile_newer)),\
98                 $(O_TO_S_DO))
99 else
100 $(LIB): $(OBJS-y) $(DEP_$(LIB)) FORCE
101         @[ -d $(dir $@) ] || mkdir -p $(dir $@)
102         $(if $(D),\
103             @echo -n "$< -> $@ " ; \
104             echo -n "file_missing=$(call boolean,$(file_missing)) " ; \
105             echo -n "cmdline_changed=$(call boolean,$(call cmdline_changed,$(O_TO_A_STR))) " ; \
106             echo -n "depfile_missing=$(call boolean,$(depfile_missing)) " ; \
107             echo "depfile_newer=$(call boolean,$(depfile_newer)) ")
108         $(if $(or \
109             $(file_missing),\
110             $(call cmdline_changed,$(O_TO_A_STR)),\
111             $(depfile_missing),\
112             $(depfile_newer)),\
113             $(O_TO_A_DO))
114 endif
115
116 #
117 # install lib in $(RTE_OUTPUT)/lib
118 #
119 $(RTE_OUTPUT)/lib/$(LIB): $(LIB)
120         @echo "  INSTALL-LIB $(LIB)"
121         @[ -d $(RTE_OUTPUT)/lib ] || mkdir -p $(RTE_OUTPUT)/lib
122         $(Q)cp -f $(LIB) $(RTE_OUTPUT)/lib
123
124 #
125 # Clean all generated files
126 #
127 .PHONY: clean
128 clean: _postclean
129
130 .PHONY: doclean
131 doclean:
132         $(Q)rm -rf $(LIB) $(OBJS-all) $(DEPS-all) $(DEPSTMP-all) \
133           $(CMDS-all) $(INSTALL-FILES-all)
134         $(Q)rm -f $(_BUILD_TARGETS) $(_INSTALL_TARGETS) $(_CLEAN_TARGETS)
135
136 include $(RTE_SDK)/mk/internal/rte.compile-post.mk
137 include $(RTE_SDK)/mk/internal/rte.install-post.mk
138 include $(RTE_SDK)/mk/internal/rte.clean-post.mk
139 include $(RTE_SDK)/mk/internal/rte.build-post.mk
140 include $(RTE_SDK)/mk/internal/rte.depdirs-post.mk
141
142 .PHONY: FORCE
143 FORCE: