occlum/demos/hello_c/Makefile
Tate, Hongliang Tian f9376ec4ba Polish the demos
1. Rename demo/ to demos/
2. Add demos/README.md
2019-10-19 02:04:13 +00:00

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