Remove unused directories and files in video_in_hal
[staging/basesystem.git] / service / native / framework_unified / client / NS_ConfigParser / src / makefile_PosixBasedOS001
1 #
2 # @copyright Copyright (c) 2016-2020 TOYOTA MOTOR CORPORATION.
3 #
4 # Licensed under the Apache License, Version 2.0 (the "License");
5 # you may not use this file except in compliance with the License.
6 # You may obtain a copy of the License at
7 #
8 #      http://www.apache.org/licenses/LICENSE-2.0
9 #
10 # Unless required by applicable law or agreed to in writing, software
11 # distributed under the License is distributed on an "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License.
15 #
16
17 #
18 # Standard Module Makefile version 2.0
19 #
20
21 # Name of the componet (team/domain prefix '_' component name)
22 COMPONENT_NAME = NS_ConfigParser
23
24 ifndef PRJ_ROOT
25 export PRJ_ROOT = $(CURDIR)/../
26 endif
27 include $(PRJ_ROOT)cfg/depends.mk
28
29 # Name of the componet (team/domain prefix '_' component name)
30 #  This must be the same as the RTC Component name and Eclipse Project Name
31 COMPONENT_NAME = NS_ConfigParser
32
33
34 # Additive Compile Flags (Flags from initiating make process will still apply)
35 DEFS +=
36
37 # Set local includes and then the reference includes (priority order determines search path)
38 # Default pattern are any configuration includes (which would be things like PosixBasedOS001), local (Team) component directories,
39 # dependencies includes (other teams)
40 # Local (current component references should be in the form of
41 #  $(CC_IFLAG)$(TEAM_ROOT)$(COMPONENT_NAME)/directory
42 #  Example your public include directory would be
43 #  $(CC_IFLAG)$(TEAM_ROOT)$(COMPONENT_NAME)/inc
44 # Team references should only be to other's public includes such as
45 #  $(CC_IFLAG)$(TEAM_ROOT)NS_MessageCenter/inc
46 # Global (non-team) references should be only to other's public includes such
47 #  these are found in the depends include file and captured in the (DEPENDS_INCLUDES) variable
48 INCLUDES = \
49         $(CFG_INCS) \
50         $(CC_IFLAG)./ \
51         $(DEPENDS_INCLUDES) \
52         $(CC_IFLAG)$(TEAM_ROOT)$(COMPONENT_NAME)/inc \
53         $(CC_IFLAG)$(TEAM_ROOT)NS_XMLConfigParser/inc
54
55 # Do the same if you need to include library paths as well
56 #  Do an incremental in case additional library paths are defined
57 #  at the top-level make.  Use similar guidelines as for includes
58 #  for example to include a team component library it would be
59 #  $(TEAM_ROOT)NS_MessageCenter/lib/NS_MessageCenter/
60 LIB_PATHS += \
61   $(DEPENDS_LIB_PATHS) \
62
63
64
65 # Define binary outputs.  These can be libraries or executables.
66 #  Name a variable for each deliverable.  Suffixes should be
67 #  EXEC - For Executables -> output to the bin directory
68 #TIME_EXEC = $(BIN_PATH)time
69 #  LIB - For Static Libraries -> output to lib directory with specific naming
70 #MATH_LIB = $(LIB_PATH)$(LIB_PREFIX)math.$(LIB_EXT)
71 #  SLIB - For Shared Objects
72 #FRMWRK_SLIB = $(SLIB_PATH)frmwrk.$(SO_EXT)
73 #  LIB - Define the static library for Message Queue
74 #
75 #
76 ifdef DYNAMIC
77         COMPONENT_LIB = $(SLIB_PATH)$(LIB_PREFIX)$(COMPONENT_NAME)$(DEBUG_EXT).$(SO_EXT)
78 else
79         COMPONENT_LIB = $(LIB_PATH)$(LIB_PREFIX)$(COMPONENT_NAME)$(DEBUG_EXT).$(LIB_EXT)
80 endif
81
82
83 ## Sources Section
84
85 # Define Library & Executable Sources (on a per deliverable basis)
86 #  This includes sources located in subdirectories.
87
88 # Define generic line that pulls all c, cc, cpp files
89 # since your in the src folder is pull only files from there
90 COMPONENT_SRCS = \
91         $(wildcard *.c) \
92         $(wildcard *.cpp)
93
94 # Define sources that my not be local to your component
95 # here, you can define indivial files or wildcard from
96 # a different folder.
97 NON_LOCAL_SRCS = \
98
99
100 # List of all sources to be built.  Can be assembled from the other defintitions.
101 #  This only defines sources for the current directory, so if there are subdirectories
102 #  those are not included.  (Those are found in simple subdirectory makefiles that only
103 #  direct the building of sources, but no linking into a binary)
104 SOURCES = \
105         $(COMPONENT_SRCS) \
106         $(NON_LOCAL_SRCS) \
107
108
109
110 #
111 # Convert the source files to object files with correct folder location.
112 #
113 #
114 C_LANG_OBJECTS = $(addprefix $(BLD_PATH),$(addsuffix .$(OBJ_EXT),$(basename $(filter %.c ,$(SOURCES) ) ) ) )
115 CPP_LANG_OBJECTS = $(addprefix $(BLD_PATH),$(addsuffix .$(OBJ_EXT),$(basename $(filter %.cpp %.cc %.cxx,$(SOURCES) ) ) ) )
116
117
118 # List of all sources to be generated.  Can be assembled from the other defintitions.
119 OBJECTS = \
120         $(C_LANG_OBJECTS) \
121         $(CPP_LANG_OBJECTS)
122
123
124
125 # All headers that are dependencies.  Wildcard is easy to pickup local headers.
126 #  This is only to automate the rebuilding, all builds on the servers are cleans
127 #  So this is not a huge deal when building on a component level.
128 HEADERS = \
129         $(wildcard *.h) \
130         $(wildcard $(TEAM_ROOT)$(COMPONENT_NAME)/inc/*.h) \
131         $(wildcard $(TEAM_ROOT)NativeServices/inc/*.h) \
132         $(wildcard $(TEAM_ROOT)NativeServices/inc/native/*.h) \
133
134
135 LIBRARIES = \
136         $(COMPONENT_LIB) \
137
138 #DYNAMIC_LIBS += \
139 #       xml2 \
140 #       m
141
142 # Make targets
143 #  Standard
144 all: banner module_dirs subdirs local library binary
145
146 debug:
147         $(MAKE) TARGET=arm DEBUG=TRUE all
148
149 base: banner module_dirs subdirs local
150
151 # Standard Building of Source Files (Default builds for all objects defined above)
152 $(C_LANG_OBJECTS): $(SOURCES) $(HEADERS)
153         $(CC_CMD)
154
155 $(CPP_LANG_OBJECTS): $(SOURCES) $(HEADERS)
156         $(CPP_CMD)
157
158 local: $(OBJECTS)
159
160 # Defines specific for each deliverable
161
162 # For a static library
163 $(COMPONENT_LIB): $(OBJECTS)
164 ifdef DYNAMIC
165 # For a dynamic library
166         $(SLIB_CMD)
167         $(HIDE_ECHO_FLAG)$(OBJCPY) --only-keep-debug $(@) $(@).debug
168         $(HIDE_ECHO_FLAG)$(OBJCPY) --strip-all $(@)
169         $(HIDE_ECHO_FLAG)$(OBJCPY) --add-gnu-debuglink=$(@).debug $(@)
170 else
171 # For a static library
172         $(AR_CMD)
173 endif
174
175 # Standard set of derived targets
176 library: base \
177         $(LIBRARIES)
178         @echo "***** `date` Done building library: $(COMPONENT_NAME) ******"
179
180 binary: base \
181         $(BINARIES)
182
183 # Subdirs should be to jump to subdirectories
184 #  standard form is of
185 #  $(MAKE) -C subdirectory_name $(MAKECMDGOALS)
186 subdirs:
187
188 clean:
189         -rm -f $(BINARIES)
190         -rm -f $(LIBRARIES)
191         -rm -f $(OBJECTS)
192         -rm -f $(COMPONENT_LIB).map
193         -rm -f $(COMPONENT_LIB).debug
194
195 -v:
196         @echo "objs: --> $(OBJECTS)"
197         @echo "sources: --> $(SOURCES)"
198         @echo "headers: --> $(HEADERS)"
199         @echo "includes: --> $(INCLUDES)"
200         @echo "lib paths: --> $(LIB_PATHS)"
201         @echo "static libs: --> $(LD_STATIC_LIBS)"
202         @echo "dynamic libs: --> $(LD_DYNAMIC_LIBS)"
203         @echo "lib: --> $(LIBRARIES)"
204         @echo "bin: --> $(BINARIES)"
205
206 module_dirs: build_dirs
207