mirror of
				https://sourceware.org/git/glibc.git
				synced 2025-10-30 10:45:40 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			201 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			201 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| CC=gcc
 | |
| CFLAGS=-g -O -Wall -I.. -D_REENTRANT
 | |
| LIBPTHREAD=../libpthread.a
 | |
| 
 | |
| PROGS=ex1 ex2 ex3 ex4 ex5 proxy
 | |
| 
 | |
| all: $(PROGS)
 | |
| 
 | |
| .c:
 | |
| 	$(CC) $(CFLAGS) -o $* $*.c $(LIBPTHREAD)
 | |
| 
 | |
| $(PROGS):
 | |
| 
 | |
| clean:
 | |
| 	rm -f $(PROGS)
 |