Update INFO.yaml with new PTL
[demo.git] / vnfs / VESreporting_vFW5.0_DANOS / Makefile
1 #############################################################################
2 #
3 # Copyright © 2017 AT&T Intellectual Property. All rights reserved.
4 #
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
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 CC=gcc
19
20 ARCH=$(shell getconf LONG_BIT)
21 MACHINE_ARCH=$(shell uname -m)
22 CODE_ROOT=$(CURDIR)
23 LIBS_DIR=$(CODE_ROOT)/evel/evel-library/libs/$(MACHINE_ARCH)
24 INCLUDE_DIR=$(CODE_ROOT)/evel/evel-library/code/evel_library
25 EVEL_CODE_PATH=${CODE_ROOT}/evel/evel-library/code/evel_library/
26 EVEL_BUILD_PATH=${CODE_ROOT}/evel/evel-library/bldjobs
27
28 #******************************************************************************
29 # Standard compiler flags.                                                    *
30 #******************************************************************************
31 CPPFLAGS=
32 CFLAGS=-Wall -g -fPIC
33
34 all:    evel \
35         vpp-measurement-reporter-danos
36
37 clean:
38         rm -f vpp-measurement-reporter-danos
39
40 vpp-measurement-reporter-danos: ${LIBS_DIR}/evel.so vpp-measurement-reporter-danos.c
41         $(CC) $(CPPFLAGS) $(CFLAGS) -o vpp-measurement-reporter-danos \
42                                     -L $(LIBS_DIR) \
43                                     -I $(INCLUDE_DIR) \
44                                vpp-measurement-reporter-danos.c \
45                               -lpthread \
46                               -level \
47                               -ljansson \
48                               -lvyatta-config \
49                               -lcurl
50         ls -l ${CODE_ROOT}/evel/evel-library/libs/x86_64/
51
52 ${LIBS_DIR}/evel.so:    ${EVEL_CODE_PATH}/evel.c
53         ${MAKE} -C ${EVEL_BUILD_PATH}  all
54