forked from mirrors/tftp-hpa-google
		
	
		
			
				
	
	
		
			23 lines
		
	
	
	
		
			270 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
	
		
			270 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
#
 | 
						|
# Extra functions which may not be available everywhere
 | 
						|
#
 | 
						|
 | 
						|
-include ../MCONFIG
 | 
						|
include ../MRULES
 | 
						|
 | 
						|
all:	libxtra.a
 | 
						|
 | 
						|
install:
 | 
						|
 | 
						|
clean:
 | 
						|
	-rm -f *.a *.o
 | 
						|
 | 
						|
distclean: clean
 | 
						|
	-rm -f *~
 | 
						|
 | 
						|
libxtra.a: $(LIBOBJS)
 | 
						|
	-rm -f libxtra.a
 | 
						|
	$(AR) libxtra.a $(LIBOBJS)
 | 
						|
	$(RANLIB) libxtra.a
 | 
						|
 | 
						|
 |