VES5.4.1 EVEL Library enhancements
[demo.git] / vnfs / VES5.0 / evel / evel-library / code / VESreporting_vAFX / 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 ARCH=$(shell getconf LONG_BIT)
20 CODE_ROOT=$(CURDIR)/../..
21 #CODE_ROOT=../VES/evel/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= afx_ves_reporter.o afx_util.o\
32              afx_bgpsyslog.o afx_perfmon.o  afx_linkmon.o  afx_svc.o 
33
34 all:    afx_ves_reporter
35
36 clean:
37         rm -f  *.o afx_ves_reporter
38
39 %.o: %.c
40         $(CC) $(CPPFLAGS) $(CFLAGS) $(INCLUDE_DIR) -c $< -o $@
41
42 afx_ves_reporter.o: afx_ves_reporter.c afx_ves_reporter.h
43 afx_svc.o: afx_svc.c afx_ves_reporter.h
44 afx_linkmon.o: afx_linkmon.c afx_ves_reporter.h
45 afx_perfmon.o: afx_perfmon.c afx_ves_reporter.h
46 afx_bgpsyslog.o: afx_bgpsyslog.c afx_ves_reporter.h
47 afx_util.o: afx_util.c afx_ves_reporter.h
48
49 afx_ves_reporter: $(FILEOBJLIST)
50         $(CC) $(CPPFLAGS) $(CFLAGS) -o afx_ves_reporter \
51                                 $(LIBS_DIR) \
52                                $(FILEOBJLIST) \
53                               -lpthread \
54                               -level \
55                               -lcurl
56
57