aboutsummaryrefslogtreecommitdiffstats
path: root/vnfs/VES5.0/evel/evel-library/code/evel_training/03-include-header/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'vnfs/VES5.0/evel/evel-library/code/evel_training/03-include-header/Makefile')
-rw-r--r--vnfs/VES5.0/evel/evel-library/code/evel_training/03-include-header/Makefile24
1 files changed, 0 insertions, 24 deletions
diff --git a/vnfs/VES5.0/evel/evel-library/code/evel_training/03-include-header/Makefile b/vnfs/VES5.0/evel/evel-library/code/evel_training/03-include-header/Makefile
deleted file mode 100644
index 1fccf915..00000000
--- a/vnfs/VES5.0/evel/evel-library/code/evel_training/03-include-header/Makefile
+++ /dev/null
@@ -1,24 +0,0 @@
-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
-