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

📄 makefile

📁 cryptoboot is set of tools for disk encryption on Unix. It is especially suited to encrypt root par
💻
字号:
# FIXME: use libs only where requiredCFLAGS=-ansi -Wall -ggdb# libxmlCFLAGS+=${shell xml2-config --cflags}LDFLAGS+=${shell xml2-config --libs}# cdkCFLAGS+=-I/usr/include/cdkLDFLAGS+=-lcdk -lncurses# opensslLDFLAGS+=-lssl# readline and historyLDFLAGS+=-lreadline -lhistoryall: readtoken readtoken_cli cryptodevcfg cryptokencfg masterkeycfg cryptousercfgreadtoken: readtoken.o shm.o pkcs5_pbkdf2.o util.o tokencommon.o globalvars.oreadtoken_cli: readtoken_cli.o shm.o pkcs5_pbkdf2.o util.o tokencommon.o globalvars.ocryptodevcfg: cryptodevcfg.o shm.o util.o shell.o devcfgcommands.o globalvars.o ctabcommon.ocryptokencfg: cryptokencfg.o util.o shell.o tokencfgcommands.o pkcs5_pbkdf2.o tokencommon.o globalvars.ocryptousercfg: cryptousercfg.o util.o shell.o usercfgcommands.o pkcs5_pbkdf2.o tokencommon.o globalvars.o shm.o ctabcommon.omasterkeycfg: masterkeycfg.o shm.o util.o globalvars.odiskimage:	dd if=/dev/zero of=diskimage bs=1M count=10 && losetup /dev/loop0 diskimage && mkfs.ext2 /dev/loop0 && losetup -d /dev/loop0clean:	rm -f *.o readtoken cryptodevcfg masterkeycfg cryptokencfg readtoken_cli cryptousercfg

⌨️ 快捷键说明

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