forked from mirrors/tftp-hpa-google
		
	
		
			
				
	
	
		
			29 lines
		
	
	
	
		
			331 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
	
		
			331 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
#
 | 
						|
# Extra functions which may not be available everywhere
 | 
						|
#
 | 
						|
 | 
						|
SRCROOT = ..
 | 
						|
 | 
						|
-include ../MCONFIG
 | 
						|
include ../MRULES
 | 
						|
 | 
						|
ifeq ($(LIBOBJS),)
 | 
						|
all:
 | 
						|
else
 | 
						|
all:	libxtra.a
 | 
						|
endif
 | 
						|
 | 
						|
install:
 | 
						|
 | 
						|
clean:
 | 
						|
	-rm -f *.a *.o *.obj *.exe
 | 
						|
 | 
						|
distclean: clean
 | 
						|
	-rm -f *~
 | 
						|
 | 
						|
libxtra.a: $(LIBOBJS)
 | 
						|
	-rm -f libxtra.a
 | 
						|
	$(AR) libxtra.a $(LIBOBJS)
 | 
						|
	$(RANLIB) libxtra.a
 | 
						|
 | 
						|
 |