e0077597faf1fa316aacea1d4f7932c2716ddd6e
[demo.git] / vnfs / VES5.0 / evel / evel-library / code / VESreporting_HB / Makefile
1 #############################################################################
2 #
3 # Copyright © 2018 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 ARCH=$(shell getconf LONG_BIT)
20 CODE_ROOT=$(CURDIR)/../..
21 #CODE_ROOT=../code/evel-library
22 LIBS_DIR=$(CODE_ROOT)/libs/x86_$(ARCH)
23 #LIBS_DIR=/usr/lib
24 INCLUDE_DIR= -I $(CODE_ROOT)/code/evel_library -I . 
25
26 #******************************************************************************
27 # Standard compiler flags.                                                    *
28 #******************************************************************************
29 CPPFLAGS=
30 CFLAGS=-Wall -g -fPIC
31 FILEOBJLIST= jsmn.o ves_heartbeat_reporter.o
32
33 all:    ves_heartbeat_reporter
34
35 clean:
36         rm -f  *.o ves_heartbeat_reporter
37
38 %.o: %.c
39         $(CC) $(CPPFLAGS) $(CFLAGS) $(INCLUDE_DIR) -c $< -o $@
40
41 jsmn.o: jsmn.c jsmn.h
42 ves_heartbeat_reporter.o: ves_heartbeat_reporter.c
43
44 ves_heartbeat_reporter: $(FILEOBJLIST)
45         $(CC) $(CPPFLAGS) $(CFLAGS) -o ves_heartbeat_reporter \
46                                     -L $(LIBS_DIR) \
47                                $(FILEOBJLIST) \
48                               -lpthread \
49                               -level \
50                               -lcurl
51
52