blob: 6acfdd42ccf874dfdbc17ad5dd6b91024e7d0754 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
CC=gcc
ARCH=$(shell getconf LONG_BIT)
CODE_ROOT=$(CURDIR)/../../..
LIBS_DIR=$(CODE_ROOT)/libs/x86_$(ARCH)
INCLUDE_DIR=$(CODE_ROOT)/code/evel_library
#******************************************************************************
# Standard compiler flags. *
#******************************************************************************
CPPFLAGS=
CFLAGS=-Wall -g -fPIC
all: hello_evel_world
hello_evel_world: hello_evel_world.c
$(CC) $(CPPFLAGS) $(CFLAGS) -o hello_evel_world \
-L $(LIBS_DIR) \
-I $(INCLUDE_DIR) \
hello_evel_world.c \
-lpthread \
-level \
-lcurl
#******************************************************************************
# Configure the vel_username and vel_password to
# vel_username = username
# vel_password = password
#******************************************************************************
run: all
./hello_evel_world localhost 30000 username password
|