* Transition with new plymouth from /usr/share to /lib: - replace /lib instances by /usr/share - move src/lib/plymouth to src/usr/share/plymouth and adapt Makefile - breaks against older plymouth. - ensure we can transition the alternatives to the new version
		
			
				
	
	
		
			19 lines
		
	
	
		
			308 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			308 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| #!/usr/bin/make -f
 | |
| 
 | |
| #SUBDIRS :=
 | |
|  
 | |
| all: install
 | |
| 
 | |
| install:
 | |
| 	mkdir -pv $(DESTDIR)
 | |
| 	cp -a src/usr $(DESTDIR)/.
 | |
| 	# po generation
 | |
| 	for i in $(SUBDIRS); do \
 | |
| 		make -C $(DESTDIR)/$$i; \
 | |
| 		rm -rf $(DESTDIR)/$$i; \
 | |
| 	done
 | |
| 	# remove some remaining files
 | |
| 	find $(DESTDIR) -type f -iname "*.in" | xargs rm -f
 | |
| 
 | |
| # vim:ts=4
 |