 588b48caf6
			
		
	
	
	588b48caf6
	
	
	
		
			
			At this point, USB/IP userspace code is fully functional and can be moved out of staging. Signed-off-by: Valentina Manea <valentina.manea.m@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
		
			
				
	
	
		
			12 lines
		
	
	
	
		
			366 B
			
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
	
		
			366 B
			
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
| #!/bin/sh
 | |
| 
 | |
| if [ -r Makefile ]; then
 | |
| 	make distclean
 | |
| fi
 | |
| 
 | |
| FILES="aclocal.m4 autom4te.cache compile config.guess config.h.in config.log \
 | |
|        config.status config.sub configure cscope.out depcomp install-sh      \
 | |
|        libsrc/Makefile libsrc/Makefile.in libtool ltmain.sh Makefile         \
 | |
|        Makefile.in missing src/Makefile src/Makefile.in"
 | |
| 
 | |
| rm -vRf $FILES
 |