aboutsummaryrefslogtreecommitdiffstats
path: root/vnfs/VES5.0/evel/evel-library/code/evel_training/01-hello-world/Makefile
blob: eae417d826ad6254c4ee66d75c0edf5830b70b6d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
CC=gcc

#******************************************************************************
# 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 hello_evel_world.c