mirror of
				https://github.com/onyx-and-iris/aoc2023.git
				synced 2025-11-03 22:31:46 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			98 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			98 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
TEST="test.txt"
 | 
						|
INPUT="input.txt"
 | 
						|
 | 
						|
test:
 | 
						|
	go run . < $(TEST)
 | 
						|
 | 
						|
run:
 | 
						|
	go run . < $(INPUT)
 | 
						|
 | 
						|
all: test |