All checks were successful
		
		
	
	continuous-integration/drone/push Build is passing
				
			Co-authored-by: Boming Zhang <bomingzh@sjtu.edu.cn> Reviewed-on: FOCS-dev/JOJ3#22
		
			
				
	
	
		
			19 lines
		
	
	
		
			341 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			341 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| .PHONY: all clean test
 | |
| 
 | |
| BUILD_DIR = ./build
 | |
| APPS := $(notdir $(wildcard ./cmd/*))
 | |
| FLAGS := "-s -w"
 | |
| 
 | |
| all:
 | |
| 	$(foreach APP,$(APPS), go build -ldflags=$(FLAGS) -o $(BUILD_DIR)/$(APP) ./cmd/$(APP);)
 | |
| 
 | |
| clean:
 | |
| 	rm -rf $(BUILD_DIR)/*
 | |
| 	rm -rf *.out
 | |
| 
 | |
| prepare-test:
 | |
| 	git submodule update --init --remote
 | |
| 
 | |
| test:
 | |
| 	go test -coverprofile cover.out -v ./...
 |