remove version in all files
[dpdk.git] / mk / rte.obj.mk
1 #   BSD LICENSE
2
3 #   Copyright(c) 2010-2012 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
33 include $(RTE_SDK)/mk/internal/rte.compile-pre.mk
34 include $(RTE_SDK)/mk/internal/rte.install-pre.mk
35 include $(RTE_SDK)/mk/internal/rte.clean-pre.mk
36 include $(RTE_SDK)/mk/internal/rte.build-pre.mk
37 include $(RTE_SDK)/mk/internal/rte.depdirs-pre.mk
38
39 # VPATH contains at least SRCDIR
40 VPATH += $(SRCDIR)
41
42 ifneq ($(OBJ),)
43 _BUILD = $(OBJ)
44 else
45 _BUILD = $(OBJS-y)
46 endif
47 _INSTALL = $(INSTALL-FILES-y) $(SYMLINK-FILES-y)
48 _CLEAN = doclean
49
50 .PHONY: all
51 all: install
52
53 .PHONY: install
54 install: build _postinstall
55
56 _postinstall: build
57
58 .PHONY: build
59 build: _postbuild
60
61 ifneq ($(OBJ),)
62 exe2cmd = $(strip $(call dotfile,$(patsubst %,%.cmd,$(1))))
63
64 O_TO_O = $(LD) -r -o $(OBJ) $(OBJS-y)
65 O_TO_O_STR = $(subst ','\'',$(O_TO_O)) #'# fix syntax highlight
66 O_TO_O_DISP =  $(if $(V),"$(O_TO_O_STR)","  LD $(@)")
67 O_TO_O_CMD = "cmd_$@ = $(O_TO_O_STR)"
68 O_TO_O_DO = @set -e; \
69         echo $(O_TO_O_DISP); \
70         $(O_TO_O) && \
71         echo $(O_TO_O_CMD) > $(call exe2cmd,$(@))
72
73 -include .$(OBJ).cmd
74
75 #
76 # Archive objects in .a file if needed
77 #
78 $(OBJ): $(OBJS-y) FORCE
79         @[ -d $(dir $@) ] || mkdir -p $(dir $@)
80         $(if $(D),\
81                 @echo -n "$< -> $@ " ; \
82                 echo -n "file_missing=$(call boolean,$(file_missing)) " ; \
83                 echo -n "cmdline_changed=$(call boolean,$(call cmdline_changed,$(O_TO_O_STR))) " ; \
84                 echo -n "depfile_missing=$(call boolean,$(depfile_missing)) " ; \
85                 echo "depfile_newer=$(call boolean,$(depfile_newer)) ")
86         $(if $(or \
87                 $(file_missing),\
88                 $(call cmdline_changed,$(O_TO_O_STR)),\
89                 $(depfile_missing),\
90                 $(depfile_newer)),\
91                 $(O_TO_O_DO))
92 endif
93
94 #
95 # Clean all generated files
96 #
97 .PHONY: clean
98 clean: _postclean
99
100 .PHONY: doclean
101 doclean:
102         @rm -rf $(OBJ) $(OBJS-all) $(DEPS-all) $(DEPSTMP-all) \
103           $(CMDS-all) $(INSTALL-FILES-all)
104         @rm -f $(_BUILD_TARGETS) $(_INSTALL_TARGETS) $(_CLEAN_TARGETS)
105
106 include $(RTE_SDK)/mk/internal/rte.compile-post.mk
107 include $(RTE_SDK)/mk/internal/rte.install-post.mk
108 include $(RTE_SDK)/mk/internal/rte.clean-post.mk
109 include $(RTE_SDK)/mk/internal/rte.build-post.mk
110 include $(RTE_SDK)/mk/internal/rte.depdirs-post.mk
111
112 .PHONY: FORCE
113 FORCE: