mirror of
				https://git.proxmox.com/git/qemu
				synced 2025-10-31 13:19:36 +00:00 
			
		
		
		
	 2ac85b93b0
			
		
	
	
		2ac85b93b0
		
	
	
	
	
		
			
			client to talk to ccid-card-passthru and use smartcard on client to perform actual operations. v23->v24 changes: (Jes Sorensen review 2) * use qemu_socket instead of socket * use fprintf(stderr,..) for errors * remove unneccessary includes since using qemu_common.h
		
			
				
	
	
		
			26 lines
		
	
	
		
			597 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			597 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| -include ../config-host.mak
 | |
| -include $(SRC_PATH)/Makefile.objs
 | |
| -include $(SRC_PATH)/rules.mak
 | |
| 
 | |
| $(call set-vpath, $(SRC_PATH):$(SRC_PATH)/libcacard)
 | |
| 
 | |
| ifeq ($(CONFIG_WIN32),y)
 | |
| QEMU_THREAD=qemu-thread-win32.o
 | |
| else
 | |
| QEMU_THREAD=qemu-thread-posix.o
 | |
| endif
 | |
| 
 | |
| 
 | |
| QEMU_OBJS=$(addprefix ../, $(QEMU_THREAD) $(oslib-obj-y) $(trace-obj-y) qemu-malloc.o qemu-timer-common.o)
 | |
| 
 | |
| QEMU_CFLAGS+=-I../
 | |
| 
 | |
| vscclient: $(libcacard-y) $(QEMU_OBJS) vscclient.o
 | |
| 	$(call quiet-command,$(CC) $(libcacard_libs) -lrt -o $@ $^,"  LINK  $(TARGET_DIR)$@")
 | |
| 
 | |
| all: vscclient
 | |
| 
 | |
| clean:
 | |
| 	rm -f *.o */*.o *.d */*.d *.a */*.a *~ */*~ vscclient
 | |
| 
 |