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

📄 makefile

📁 一个tcp/ip协议栈,带有PPP、IP、TCP、UDP等协议
💻
字号:
##	MAKEFILE for uC/IP 1.0 Library##	This makes the objects and links them into the library only.## Choose the operating system.IF_PATH = ./if_dev/ne2kOS_PATH = ./OS_WIN32TARGETNAME = UCIP.aDEFS = -D_DEBUG INCLUDE = -I$(OS_PATH)#CFLAGS = -I$(OS_PATH)CC = gccCPPFLAGS = -O0 -g3 -W $(DEFS) $(INCLUDE)################################################## List the dependancies for the targets to makeOBJECTS = \       InetAddr.o \       net.o \       netaddrs.o \       netarp.o \       netauth.o \       netbootp.o \       netbuf.o \       netchap.o \       netchat.o \       netchpms.o \       netdebug.o \       netdhcp.o \       neteth.o \       netether.o \       netfsm.o \       neticmp.o \       netip.o \       netipcp.o \       netlcp.o \       netmagic.o \       netmd5.o \       netpap.o \       netppp.o \       netrand.o \       netsock.o \       netsocka.o \       nettcp.o \       nettimer.o \       netudp.o \       netvj.o#       netvj.o \#       $(IF_PATH)/if_ne2kd.o \#       $(IF_PATH)/if_os.o \#       $(OS_PATH)/ucos.o \#       $(OS_PATH)/ucos32.o \#       $(OS_PATH)/trace.oDEPENDENCIES = Makefile################################################## How to build the targets$(TARGETNAME): $(OBJECTS) $(DEPENDENCIES)	$(RM) $(TARGETNAME)	$(LD) -r $(OBJECTS) -o $(TARGETNAME)#all:	$(NET_OBJS)#	$(CC) $(NET_OBJS) -o $(OS_PATH)/ucip.PHONY : clean################################################## Cleanupclean:	$(RM) $(OBJECTS)	$(RM) $(TARGETNAME)

⌨️ 快捷键说明

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