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

📄 makefile

📁 Linux下的ftp服务器
💻
字号:
CC=gcc -g
zjwftp:myftp_serv.o myftp_cmd_string.o myftp_state_machine.o mystr.o
	$(CC) $^ -o $@ -lcrypt
myftp_serv.o:myftp_serv.c myftp_cmd_string.h myftp_state_machine.h mystr.h
	$(CC) -c $< -o $@
myftp_cmd_string.o:myftp_cmd_string.c myftp_cmd_string.h
	$(CC) -c $< -o $@
myftp_state_machine.o:myftp_state_machine.c myftp_state_machine.h myftp_session.h myftp_cmd_string.h public.h
	$(CC) -c $< -o $@
mystr.o:mystr.c mystr.h public.h
	$(CC) -c $< -o $@
clean:
	rm -rf *.o

⌨️ 快捷键说明

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