mirror of
				https://github.com/fooflington/wordsearch.git
				synced 2025-11-03 22:09:03 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			188 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			188 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
CC=gcc
 | 
						|
CFLAGS=-DDEBUG_GRID_MAIN -std=c99 -g
 | 
						|
DEPS=dir.o rnd.o grid.o
 | 
						|
 | 
						|
wordsearch: $(DEPS)
 | 
						|
	$(CC) -o wordsearch $(DEPS) $(CFLAGS)
 | 
						|
 | 
						|
%.o: %.c 
 | 
						|
	$(CC) -c -o $@ $< $(CFLAGS)
 | 
						|
 | 
						|
clean:
 | 
						|
	rm $(DEPS)
 |