mirror of
				https://github.com/labwc/labwc.git
				synced 2025-11-03 09:01:51 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
	
		
			171 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
	
		
			171 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
CFLAGS += -g -Wall -O0 -std=c11
 | 
						|
LDFLAGS += -fsanitize=address
 | 
						|
 | 
						|
PROGS = find-idents
 | 
						|
 | 
						|
all: $(PROGS)
 | 
						|
 | 
						|
find-idents: find-idents.o
 | 
						|
	$(CC) -o $@ $^
 | 
						|
 | 
						|
clean :
 | 
						|
	$(RM) $(PROGS) *.o
 |