14 lines
		
	
	
		
			566 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			566 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| CC=gcc
 | |
| CFLAGS=-Wall
 | |
| all:	qubes_penctl qubes_add_pendrive_script qvm-open-in-dvm dvm_file_editor
 | |
| dvm_file_editor: dvm_file_editor.o
 | |
| 	$(CC) -o dvm_file_editor dvm_file_editor.o
 | |
| qubes_penctl: qubes_penctl.o
 | |
| 	$(CC) -o qubes_penctl qubes_penctl.o -lxenstore
 | |
| qubes_add_pendrive_script: qubes_add_pendrive_script.o
 | |
| 	$(CC) -o qubes_add_pendrive_script qubes_add_pendrive_script.o -lxenstore
 | |
| qvm-open-in-dvm: qvm-open-in-dvm.o
 | |
| 	 $(CC) -o qvm-open-in-dvm qvm-open-in-dvm.o -lxenstore
 | |
| clean:
 | |
| 	rm -f dvm_file_editor qubes_penctl qubes_add_pendrive_script qvm-open-in-dvm *.o *~
 | 
