X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;f=vnfs%2FVES5.0%2Fevel%2Fevel-library%2Fcode%2Fevel_training%2F09-raise-state-change%2FMakefile;fp=vnfs%2FVES5.0%2Fevel%2Fevel-library%2Fcode%2Fevel_training%2F09-raise-state-change%2FMakefile;h=6acfdd42ccf874dfdbc17ad5dd6b91024e7d0754;hb=fee6de844f9d4c3aad87733734d35df50117b6b0;hp=0000000000000000000000000000000000000000;hpb=f3fe765461685a753c0f5b061c5c47383c75829f;p=demo.git diff --git a/vnfs/VES5.0/evel/evel-library/code/evel_training/09-raise-state-change/Makefile b/vnfs/VES5.0/evel/evel-library/code/evel_training/09-raise-state-change/Makefile new file mode 100644 index 00000000..6acfdd42 --- /dev/null +++ b/vnfs/VES5.0/evel/evel-library/code/evel_training/09-raise-state-change/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