13 lines
		
	
	
		
			175 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			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
 |