143 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			143 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| include CommonDefs.mk
 | |
| 
 | |
| .DEFAULT_GOAL := help
 | |
| 
 | |
| help:
 | |
| 	@echo "Usage:"
 | |
| 	@echo "  make help            show help message"
 | |
| 	@echo "  make apidoc          make api doc"
 | |
| 	@echo "  make opendoc         open api doc (html)"
 | |
| 	@echo "  make init            init project"
 | |
| 	@echo "  make build           build project"
 | |
| 	@echo "  make test            build test and run"
 | |
| 	@echo "  make install         install project"
 | |
| 	@echo "  make samples         build samples"
 | |
| 	@echo "  make clean|cleanall  clean generated or useless things"
 | |
| 
 | |
| .PHONY: help
 | |
| 
 | |
| # doc
 | |
| 
 | |
| apidoc:
 | |
| 	@$(call echo,Make $@)
 | |
| 	@[ -e ./_install/include ] || $(MAKE) install
 | |
| 	@$(SH) ./doc/build.sh
 | |
| 
 | |
| opendoc: apidoc
 | |
| 	@$(call echo,Make $@)
 | |
| 	@$(shell $(SH) ./doc/langs.sh 1); \
 | |
| 	for lang in "$${LANGS[@]}"; do \
 | |
| 		html=./doc/_output/$$lang/html/index.html; \
 | |
| 		[ -f "$$html" ] && $(SH) ./scripts/open.sh $$html; \
 | |
| 	done
 | |
| 
 | |
| .PHONY: apidoc opendoc
 | |
| 
 | |
| # deps
 | |
| 
 | |
| submodules:
 | |
| 	@git submodule update --init
 | |
| 
 | |
| third_party: submodules
 | |
| 	@$(call echo,Make $@)
 | |
| 	@$(call echo,Make glog,33)
 | |
| 	@$(call cmake_build,./third_party/glog/_build)
 | |
| 
 | |
| .PHONY: submodules third_party
 | |
| 
 | |
| # init
 | |
| 
 | |
| init: submodules
 | |
| 	@$(call echo,Make $@)
 | |
| 	@$(SH) ./scripts/init.sh
 | |
| 
 | |
| .PHONY: init
 | |
| 
 | |
| # build
 | |
| 
 | |
| build: third_party
 | |
| 	@$(call echo,Make $@)
 | |
| 	@$(call cmake_build,./_build)
 | |
| 
 | |
| .PHONY: build
 | |
| 
 | |
| # test
 | |
| 
 | |
| test: install
 | |
| 	@$(call echo,Make $@)
 | |
| 	@$(call echo,Make gtest,33)
 | |
| 	@$(call cmake_build,./test/gtest/_build)
 | |
| 	@$(call echo,Make test,33)
 | |
| 	@$(call cmake_build,./test/_build)
 | |
| 	@./test/_output/bin/mynteye_test
 | |
| 
 | |
| .PHONY: test
 | |
| 
 | |
| # install
 | |
| 
 | |
| install: build
 | |
| 	@$(call echo,Make $@)
 | |
| 	@cd ./_build; make install
 | |
| 
 | |
| .PHONY: install
 | |
| 
 | |
| # samples
 | |
| 
 | |
| samples: install
 | |
| 	@$(call echo,Make $@)
 | |
| 	@$(call cmake_build,./samples/_build)
 | |
| 
 | |
| .PHONY: samples
 | |
| 
 | |
| # clean
 | |
| 
 | |
| clean:
 | |
| 	@$(call echo,Make $@)
 | |
| 	@$(call rm,./_build/)
 | |
| 	@$(call rm,./_output/)
 | |
| 	@$(call rm,./_install/)
 | |
| 	@$(call rm,./samples/_build/)
 | |
| 	@$(call rm,./samples/_output/)
 | |
| 	@$(call rm,./test/_build/)
 | |
| 	@$(call rm,./test/_output/)
 | |
| 	@$(MAKE) cleanlog
 | |
| 
 | |
| cleanall: clean
 | |
| 	@$(call rm,./doc/_output/)
 | |
| 	@$(call rm,./test/gtest/_build/)
 | |
| 	@$(call rm,./third_party/glog/_build/)
 | |
| 	@$(FIND) . -type f -name ".DS_Store" -print0 | xargs -0 rm -f
 | |
| 
 | |
| cleanlog:
 | |
| 	@$(call rm_f,*INFO*)
 | |
| 	@$(call rm_f,*WARNING*)
 | |
| 	@$(call rm_f,*ERROR*)
 | |
| 	@$(call rm_f,*FATAL*)
 | |
| 
 | |
| .PHONY: clean cleanall cleanlog
 | |
| 
 | |
| # others
 | |
| 
 | |
| host:
 | |
| 	@$(call echo,Make $@)
 | |
| 	@echo HOST_OS: $(HOST_OS)
 | |
| 	@echo HOST_ARCH: $(HOST_ARCH)
 | |
| 	@echo HOST_NAME: $(HOST_NAME)
 | |
| 	@echo SH: $(SH)
 | |
| 	@echo ECHO: $(ECHO)
 | |
| 	@echo FIND: $(FIND)
 | |
| 	@echo CC: $(CC)
 | |
| 	@echo CXX: $(CXX)
 | |
| 	@echo MAKE: $(MAKE)
 | |
| 	@echo BUILD: $(BUILD)
 | |
| 	@echo LDD: $(LDD)
 | |
| 	@echo CMAKE: $(CMAKE)
 | |
| 
 | |
| .PHONY: host
 | |
| 
 | |
| cpplint: submodules
 | |
| 	@$(call echo,Make $@)
 | |
| 	@$(SH) ./scripts/$@.sh
 | |
| 
 | |
| .PHONY: cpplint
 |