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