mirror of
				https://git.proxmox.com/git/qemu-server
				synced 2025-11-04 03:06:53 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			9 lines
		
	
	
		
			202 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			202 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
SOURCES=qm.pm qmrestore.pm
 | 
						|
 | 
						|
.PHONY: install
 | 
						|
install: ${SOURCES}
 | 
						|
	install -d -m 0755 ${DESTDIR}${PERLDIR}/PVE/CLI
 | 
						|
	for i in ${SOURCES}; do install -D -m 0644 $$i ${DESTDIR}${PERLDIR}/PVE/CLI/$$i; done
 | 
						|
 | 
						|
 |