📄 makefile
字号:
# 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -