occlum/demo/hello_c/Makefile

13 lines
157 B
Makefile

CC := occlum-gcc
CFLAGS := -fPIC -pie
.PHONY: all clean
all: hello_world
hello_world: hello_world.c
$(CC) $(CFLAGS) $^ -o $@
clean:
rm -rf hello_world