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

📄 makefile.common

📁 T-kernel Tcp/ip Protocol Stack Sample
💻 COMMON
字号:
#/*""FILE COMMENT""*************************************************************#*   System Name : RENESAS T-Engine/micro T-Engine series#*   File Name   : Makefile.common#*   Version     : 1.00.00#*   Contents    : Makefile for creating the socket I/F lib of "TCP/IP"#*   Model       : RENESAS T-Engine / micro T-Engine#*   CPU         : SuperH / M32R#*   Compiler    : GNU#*   OS          : T-Kernel#*   note        : The Software is being delivered to you "AS IS" #*               : and Renesas,whether explicitly or implicitly makes  #*               : no warranty as to its Use or performance. #*               : RENESAS AND ITS SUPPLIER DO NOT AND CANNOT WARRANT #*               : THE PERFORMANCE OR RESULTS YOU MAY OBTAIN  BY USING #*               : THE SOFTWARE. AS TO ANY MATTER INCLUDING WITHOUT #*               : LIMITATION NONINFRINGEMENT OF THIRD PARTY RIGHTS,#*               : MERCHANTABILITY, INTEGRATION, SATISFACTORY QUALITY, #*               : OR FITNESS FOR ANY PARTICULAR PURPOSE.#*#*   Copyright (c) 2004 MITSUBISHI ELECTRIC CORO. All Rights Reserved. #*   AND RENESAS TECHNOLOGY CORP. All Rights Reserved.#*   AND RENESAS SOLUTIONS CORP. All Rights Reserved.#*#*   history     : 2004.10.04 Ver.1.00.00#*""FILE COMMENT END""*********************************************************/# source file dependencies (generated automatically)DEPS = DependenciesDEPENDENCIES_OUTPUT := $(DEPS)# ----------------------------------------------------------------------------# target fileTARGET = librenesas_tcpip.a# source file pathTOP = ../../../..S = ../../srcVPATH = $(S) $(S)/sysdepend/$(TETYPE)_$(MACHINE)HEADER = $(S) ../../../main/src $(S)/sysdepend/$(TETYPE)_$(MACHINE) \	$(TOP)/include $(BD)/include# source filesSRC +=  errno.c \	renesas_tcpip_close.S renesas_tcpip_connect.S \	renesas_tcpip_getpeername.S renesas_tcpip_getsockname.S \	renesas_tcpip_getsockopt.S renesas_tcpip_ioctl.S \	renesas_tcpip_listen.S renesas_tcpip_read.S \	renesas_tcpip_recv.S renesas_tcpip_recvfrom.S \	renesas_tcpip_send.S renesas_tcpip_sendto.S \	renesas_tcpip_setsockopt.S renesas_tcpip_shutdown.S \	renesas_tcpip_socket.S renesas_tcpip_socketpair.S \	renesas_tcpip_write.S renesas_tcpip_bind.S \	renesas_tcpip_accept.SOBJ	= $(addsuffix .o, $(basename $(notdir $(SRC))))# compiler optionsCFLAGS += $(CFLAGS_WARNING) -DEMB_SYS -DINET -DKERNEL -DCOMPAT_43 -DT_KERNEL# ----------------------------------------------------------------------------.PHONY: all clean installALL = $(TARGET)all: $(ALL)$(TARGET): $(OBJ)	$(AR) $(ARFLAGS) $@ $?#  ifdef RANLIB#	$(RANLIB) $@#  endif	cp $(TARGET) $(TOP)/lib/$(TETYPE)_$(MACHINE)install: 	$(BD)/etc/backup_copy -t $(TARGET) $(TCPLIB_INSTALLDIR)clean:	$(RM) $(OBJ) $(ALL) $(DEPS)# generate dependenciesifdef DEPENDENCIES_OUTPUT  $(DEPS): ; touch $(DEPS)else  $(DEPS): $(SRC) ; $(MAKEDEPS) $@ $?endifinclude $(DEPS)

⌨️ 快捷键说明

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