common_library: gettid is multiple declaration in cl_error
[staging/basesystem.git] / video_in_hal / nsframework / backup_manager / config / Makefile
1 #
2 # @copyright Copyright (c) 2017-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 XML_PATH := ./conf/backup
18 RNG_FILE := backup.rng
19 ALL_XML := ALL_.xml
20 ID_HEADER := ns_backup_id.h
21 BACKUP_XML := backup*.xml
22
23 ######### headers to be installed(*.h)   #############
24 INST_HEADERS := $(ID_HEADER)
25
26 ######### make rule                      #############
27 all: $(ID_HEADER)
28
29 $(ID_HEADER): $(XML_PATH)/$(ALL_XML)
30         @set -e; \
31         for xml_file in `find $(XML_PATH) -name \*.xml | grep -v $(ALL_XML)`; do \
32           xmllint --noout --relaxng $(RNG_FILE) $$xml_file; \
33           ./uniqcheck.pl $$xml_file; \
34         done
35         ./createhdr.pl $(XML_PATH)/$(ALL_XML) > $(ID_HEADER)
36
37 CLEAN_FILES := $(ID_HEADER)
38
39 install: $(XML_PATH)/$(BACKUP_XML)
40         install -m 0755 -d $(DESTDIR)/usr/agl/conf/BS/ns/backup_manager/rodata
41         install -m 0644 $(XML_PATH)/$(BACKUP_XML) $(DESTDIR)/usr/agl/conf/BS/ns/backup_manager/rodata/
42 include ../../native_service.mk