mirror of
				https://github.com/khairul169/vaulterm.git
				synced 2025-10-31 11:49:38 +07:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			240 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			240 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| # Makefile
 | |
| 
 | |
| .PHONY: test build run
 | |
| 
 | |
| # Run tests sequentially with verbose output
 | |
| test:
 | |
| 	go test -count 1 -p 1 -v rul.sh/vaulterm/tests
 | |
| 
 | |
| # Build the Go application
 | |
| build:
 | |
| 	go build -o myapp .
 | |
| 
 | |
| # Run the built application
 | |
| run: build
 | |
| 	./myapp
 |