⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 makefile

📁 This little Program allows you to send commands to the CardReader (CT-BCS) or to the Card itself. F
💻
字号:
# Makefile for ct-api# Copyright (C) 1998 Gregor A. Panstruga# To compile and test, type:#   make allCC=gccCFLAGS=OBJS=LD=ldall: lib ctclean:	rm *.o *.so*install:	cp ./libctapi-t2i.so.0.20 /usr/lib	ln -s libctapi-t2i.so.0.20 /usr/lib/libctapi-t2i.solib: ctapi.o	$(LD) -G ctapi.o -o libctapi-t2i.so.0.20ctapi.o:  ctapi.c scio.c block.c	$(CC) -c -include scio.c -include block.c -include tools.c ctapi.c ct:	$(CC) -include tools.c ct.c -lctapi-t2i -o ct	

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -