19 lines
		
	
	
		
			203 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			203 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
.PHONY: examples
 | 
						|
 | 
						|
default: run
 | 
						|
 | 
						|
run: simgame
 | 
						|
 | 
						|
simgame: examples
 | 
						|
	./bin/simgame
 | 
						|
 | 
						|
clean:
 | 
						|
	rm -rf bin
 | 
						|
 | 
						|
test:
 | 
						|
	go test -v -count=1 ./...
 | 
						|
 | 
						|
examples:
 | 
						|
	test -d bin || mkdir bin
 | 
						|
	go build -o bin/ ./examples/...
 |