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

📄 makefile.emu

📁 SOSSE,最简单的实现smart卡的教学用程序 内有电路图
💻 EMU
字号:
CC=gccAS=asOBJCOPY=objcopyCFLAGS=-Wall -I. -O6 -g -DDEBUGSRC=\	auth.c \	hal-emu.c \	commands.c \	sw.c \	fs.c \	fstream.c \	log.c \	newdes-sk.c \	skipjack.c \	t0.c \	tea.c \	tools.c \	transaction.cOBJ=\	auth.o \	hal-emu.o \	commands.o \	sw.o \	fs.o \	fstream.o \	log.o \	newdes-sk.o \	skipjack.o \	t0.o \	tea.o \	tools.o \	transaction.oall: sosse fstest authtestsosse: $(OBJ) main.o	$(CC) $(CFLAGS) -o sosse-emu $(OBJ) main.o -L. -lsiofstest: $(OBJ) fstest.o	$(CC) $(CFLAGS) -o fstest $(OBJ) fstest.o -L. -lsioauthtest: $(OBJ) authtest.o	$(CC) $(CFLAGS) -o authtest $(OBJ) authtest.o -L. -lsioclean: clean-sosse clean-fstest clean-authtest	rm -rf coreclean-sosse:	rm -rf $(OBJ) main.o sosse-emuclean-fstest:	rm -rf fstest.o fstest dumpfs.bin gmon.outclean-authtest:	rm -rf authtest.o authtest dumppin.bin gmon.out

⌨️ 快捷键说明

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