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

📄 makefile

📁 openssl是ssl的开源项目
💻
字号:
CC=ccCFLAGS= -g -I../../includeLIBS= -L/usr/local/ssl/lib -L../.. -lcryptoEXAMPLES=example1 example2 example3 example4all: $(EXAMPLES) example1: example1.o loadkeys.o 	$(CC) -o example1 example1.o loadkeys.o $(LIBS)example2: example2.o loadkeys.o	$(CC) -o example2 example2.o loadkeys.o $(LIBS)example3: example3.o 	$(CC) -o example3 example3.o $(LIBS)example4: example4.o	$(CC) -o example4 example4.o $(LIBS)	clean:		rm -f $(EXAMPLES) *.o

⌨️ 快捷键说明

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