 467477409d
			
		
	
	
		467477409d
		
	
	
	
	
		
			
			So system will automatically run them with python interpreter (wherever it is installed). This require to have ".py" in PATHEXT variable.
		
			
				
	
	
		
			15 righe
		
	
	
		
			208 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			15 righe
		
	
	
		
			208 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| BINDIR ?= /usr/bin
 | |
| ifeq ($(OS),Windows_NT)
 | |
| PYTHONEXEEXT = .py
 | |
| endif
 | |
| 
 | |
| all:
 | |
| 	true
 | |
| 
 | |
| install:
 | |
| 	mkdir -p $(DESTDIR)$(BINDIR)
 | |
| 	for f in qvm-* qubes-*; do \
 | |
| 		cp $$f $(DESTDIR)$(BINDIR)/$$f$(PYTHONEXEEXT); \
 | |
| 	done
 | |
| 
 |