f5a4da9e20f31e4a8b326643036e5bf835f2ef93
[demo.git] / vnfs / VESreporting_vLB5.0 / Makefile
1
2 #############################################################################
3 #
4 # Copyright © 2017 AT&T Intellectual Property. All rights reserved.
5 #
6 # Licensed under the Apache License, Version 2.0 (the "License");
7 # you may not use this file except in compliance with the License.
8 # You may obtain a copy of the License at
9 #        http://www.apache.org/licenses/LICENSE-2.0
10 #
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
16 #
17 #############################################################################
18
19 CC=gcc
20 ARCH=$(shell getconf LONG_BIT)
21 CODE_ROOT=$(CURDIR)/../..
22 LIBS_DIR=$(CODE_ROOT)/libs/x86_$(ARCH)
23 INCLUDE_DIR=$(CODE_ROOT)/code/evel_library
24
25 #******************************************************************************
26 # Standard compiler flags.                                                    *
27 #******************************************************************************
28 CPPFLAGS=
29 CFLAGS=-Wall -g -fPIC
30
31 all:    vpp_measurement_reporter
32
33 clean:
34         rm -f vpp_measurement_reporter
35
36 vpp_measurement_reporter: vpp_measurement_reporter.c
37         $(CC) $(CPPFLAGS) $(CFLAGS) -o vpp_measurement_reporter \
38                                     -L $(LIBS_DIR) \
39                                     -I $(INCLUDE_DIR) \
40                                vpp_measurement_reporter.c -lm -lpthread -level -lcurl