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

📄 common.mak

📁 本软件是TI公司免费提供的网络开发包 现在好象很难找到,有黑心的公司把它改一改,就卖价5000元,对网络开发和网络驱动开发有参考价值
💻 MAK
字号:
#------------------------------------------------------------------
# NOTE: 
#   The variable 'INC' should be set before including this file
#------------------------------------------------------------------

#==================================================================
#
# The following address differences between the various 
# Windows operating systems.
#

#------------------------------------------------------------------
# WINDOWS NT4
#
# uncomment the following on Windows NT4
#

#CMD = C:\WINNT\system32\CMD.EXE /y /c
#DIR_DEL1 = 'for %f in (
#DIR_DEL2 = ) do del /s /q %f'
#FILE_DEL1 = 'for %f in ( 
#FILE_DEL2 = ) if exist %f do del %f'

#------------------------------------------------------------------


#------------------------------------------------------------------
# WINDOWS 98, ME
#
# uncomment the following on Windows 98/me 
#

#CMD = 
#DIR_DEL1 = for %%f in (
#DIR_DEL2 = ) do deltree /Y %%f
#FILE_DEL1 = for %%f in ( 
#FILE_DEL2 = ) do if exist %%f del %%f

#------------------------------------------------------------------



#------------------------------------------------------------------
# WINDOWS 2000
#
# uncomment the following on Windows 2000 
#

CMD = 
DIR_DEL1 = for %%f in (
DIR_DEL2 = ) do if exist %%f rd /S /Q %%f
FILE_DEL1 = for %%f in ( 
FILE_DEL2 = ) do if exist %%f del %%f

#------------------------------------------------------------------



#==================================================================
#
# Settings for TI Tools
#

TI_PREFIX = $(TI_DIR)

AS = $(TI_PREFIX)\c6000\cgtools\bin\asm6x
AS_FLAGS =

CC = $(TI_PREFIX)\c6000\cgtools\bin\cl6x
CFLAGS = -pdr -o2 -pds=238 -pden -ms2

AR = $(TI_PREFIX)\c6000\cgtools\bin\ar6x
AR_FLAGS = 

TIMAKE = $(TI_PREFIX)\cc\bin\timake.exe


#=================================================================
#
# Common Headers
#

BASEHDR = $(INC)\usertype.h $(INC)\serrno.h $(INC)\socket.h \
	$(INC)\os\osif.h $(INC)\os\oskern.h $(INC)\stack\stack.h

STACKHDR = $(INC)\hal\hal.h $(INC)\stack\inc\fdtif.h \
	$(INC)\stack\inc\lliif.h $(INC)\stack\inc\pipeif.h $(INC)\stack\inc\rtcif.h \
	$(INC)\stack\inc\udpif.h $(INC)\stack\inc\routeif.h $(INC)\stack\inc\pppif.h \
	$(INC)\stack\inc\rawif.h $(INC)\stack\inc\bindif.h $(INC)\stack\inc\etherif.h \
	$(INC)\stack\inc\icmpif.h $(INC)\stack\inc\ipif.h $(INC)\stack\inc\natif.h \
	$(INC)\stack\inc\netdf.h $(INC)\stack\inc\nodeif.h $(INC)\stack\inc\pppoeif.h \
	$(INC)\stack\inc\resif.h $(INC)\stack\inc\sockif.h $(INC)\stack\inc\tcpif.h \
	$(INC)\stack\inc\igmpif.h

TOOLSHDR = $(INC)\nettools\nettools.h $(INC)\nettools\netcfg.h

TOOLSHDRALL = $(INC)\nettools\inc\httpif.h $(INC)\nettools\inc\tftpif.h \
	$(INC)\nettools\inc\ipaddrif.h $(INC)\nettools\inc\dnsif.h \
	$(INC)\nettools\inc\configif.h $(INC)\nettools\inc\dhcpif.h \
	$(INC)\nettools\inc\dhcpopts.h $(INC)\nettools\inc\dhcpsif.h \
	$(INC)\nettools\inc\inet.h $(INC)\nettools\inc\natif.h \
	$(INC)\nettools\inc\telnetif.h

CSL2_0 = $(TI_PREFIX)\C6000\CSL\include

⌨️ 快捷键说明

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