makefile

来自「嵌入式系统中c程序实现了rtsp协议的基本内容」· 代码 · 共 47 行

TXT
47
字号
# STAUD ./src level makefile

# By default support all possible hardware cells


DVD_MAKE_VERSION := 2
ifdef IN_OBJECT_DIR

include $(DVD_MAKE)/generic.mak

COMPONENT_NAME := rtsp
ST20_TARGETS := $(COMPONENT_NAME).lib      
ST20_EXPORTS := $(COMPONENT_NAME).h $(COMPONENT_NAME).lib


# local objects which comprise this component
OBJS = rtsp.tco rtsp_comm.tco rtsp_command.tco rtsp_resp.tco rtsp_testapp.tco\
 rtsp_util.tco  sdp_decode.tco sdp_dump.tco sdp_util.tco 
       
include $(DVD_MAKE)/defrules.mak

$(ST20_TARGETS): $(OBJS) 
	@$(ECHO) Linking $@
	$(BUILD_LIBRARY)



clean: 
	@$(ECHO) Cleaning $(TARGETS)
	-$(RM) $(OBJS)
	-$(RM) $(TARGETS)
	-$(RM) $(EXPORTS)
	




FORCE:

else

include $(DVD_MAKE)/builddir.mak

endif

# End of STAUD ./src level makefile

⌨️ 快捷键说明

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