VES PNF Registration Request changes.
[o-du/l2.git] / build / common / ves.mak
1 ################################################################################
2 #   Copyright (c) [2017-2019] [Radisys]                                        #
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 # This is makefile for O1 module
18
19 include ../common/rsys_fancy.mak
20 include ../common/env.mak
21 COLOR=$(COLOR_RED)
22
23 SRC_DIR=$(ROOT_DIR)/src/o1/ves
24 CPP_SRCS=$(wildcard $(SRC_DIR)/*.cpp)
25 CPP_OBJS=$(patsubst $(SRC_DIR)/%.cpp,$(OBJ_DIR)/%.o,$(CPP_SRCS))
26
27 PLTFRM_FLAGS=
28 lib: $(LIB_DIR)/libo1.a
29 include $(COM_BUILD_DIR)/compile.mak
30
31 L_OPTS=-lsysrepo -lyang
32 L_OPTS+= -lsysrepo-cpp -lyang-cpp
33 L_OPTS+= -lm -lpthread
34 L_OPTS+= -lnetconf2 -lcjson -lcurl
35 I_OPTS=-I$(ROOT_DIR)/src/o1/ves
36 I_OPTS+=-I$(ROOT_DIR)/src/o1
37
38 #-------------------------------------------------------------#
39 #Linker macros
40 #-------------------------------------------------------------#
41
42 $(LIB_DIR)/libo1.a:$(CPP_OBJS)
43                   @echo -e "Creating Archive $(COLOR) $@ $(REVERT_COLOR)"
44                   $(Q)ar -cr $(LIB_DIR)/libo1.a $(CPP_OBJS)
45
46 #-------------------------------------------------------------#
47 #Clean macros
48 #-------------------------------------------------------------#
49 clean:
50                   @echo -e "$(COLOR_RED)Cleaning O1$(REVERT_COLOR)"
51                   $(Q)\rm -f $(LIB_DIR)/libo1.a $(CPP_OBJS)
52
53 #**********************************************************************
54 #         End of file
55 #**********************************************************************
56