mirror of
				https://github.com/coolaj86/fizzbuzz.git
				synced 2024-11-16 17:29:04 +00:00 
			
		
		
		
	
		
			
	
	
		
			15 lines
		
	
	
		
			247 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
		
		
			
		
	
	
			15 lines
		
	
	
		
			247 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
|  | all: test | ||
|  | 
 | ||
|  | bst: obj/BST.o | ||
|  | obj/BST.o: BST.h BST.cpp | ||
|  | 	g++ -c -o obj/BST.o BST.cpp | ||
|  | 
 | ||
|  | ll: obj/LinkedList.o LinkedList.h LinkedList.cpp | ||
|  | 	g++ -c -o obj/LinkedList.o LinkedList.cpp | ||
|  | 	 | ||
|  | test: bst ll colexp passoff | ||
|  | 	./colexp part2 | ||
|  | 
 | ||
|  | clean: | ||
|  | 	rm *.o obj/*.o -rf |