mirror of
				https://github.com/coolaj86/fizzbuzz.git
				synced 2024-11-16 17:29:04 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			8 lines
		
	
	
		
			106 B
		
	
	
	
		
			Makefile
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
		
			106 B
		
	
	
	
		
			Makefile
		
	
	
		
			Executable File
		
	
	
	
	
| all:
 | |
| 	@rm -rf build; mkdir -p build
 | |
| 	cd build; cmake ../
 | |
| 	cd build; make
 | |
| 	./build/stack-test
 | |
| 
 | |
| .PHONY: all
 |