occlum/demos/hello_cc/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
175 B
Makefile

CXX := occlum-g++
CXXFLAGS := -std=c++11 -fPIC -pie
.PHONY: all clean
all: hello_world
hello_world: hello_world.cc
$(CXX) $(CXXFLAGS) $^ -o $@
clean:
rm -rf hello_world