makefile.emu

来自「SOSSE,最简单的实现smart卡的教学用程序 内有电路图」· EMU 代码 · 共 60 行

EMU
60
字号
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 + =
减小字号Ctrl + -
显示快捷键?