diff options
author | Marco Platania <platania@research.att.com> | 2017-05-18 15:02:10 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2017-05-18 15:02:10 +0000 |
commit | 0078971a8b764a79ec0a516c022576f7ffe2ed2a (patch) | |
tree | 55a140f432d9e8d8834da24ccd956dd792172c5a /VES5.0/evel/evel-library/code/evel_training/08-raise-mobile-flow/Makefile | |
parent | 2fa991c3273897940ef0d92e020daa298c68c73b (diff) | |
parent | 6c98a31b980d1d6cbbc9aeb2064d3f1c2252c3da (diff) |
Merge "VES5.0 development changes not for test"
Diffstat (limited to 'VES5.0/evel/evel-library/code/evel_training/08-raise-mobile-flow/Makefile')
-rw-r--r-- | VES5.0/evel/evel-library/code/evel_training/08-raise-mobile-flow/Makefile | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/VES5.0/evel/evel-library/code/evel_training/08-raise-mobile-flow/Makefile b/VES5.0/evel/evel-library/code/evel_training/08-raise-mobile-flow/Makefile new file mode 100644 index 00000000..6acfdd42 --- /dev/null +++ b/VES5.0/evel/evel-library/code/evel_training/08-raise-mobile-flow/Makefile @@ -0,0 +1,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 |