mirror of
				https://github.com/krislamo/knrc.git
				synced 2025-10-31 18:58:35 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			149 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			149 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| CC   = gcc
 | |
| OBJS = $(patsubst %.c,bin/%,$(wildcard *.c))
 | |
| 
 | |
| all: $(OBJS)
 | |
| 
 | |
| $(OBJS):
 | |
| 	$(CC) -o ./$@ $(patsubst bin/%,%.c,$@) -ansi
 | |
| 
 | |
| clean:
 | |
| 	$(RM) ./bin/*
 |