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

📄 makefile.in

📁 UCL Common Code Library Routines common to a number of multimedia tools. The library originates
💻 IN
字号:
#
# Makefile for the RTP example.
# This probably requires GNU make.
#

# Location of includes and library
CSRC   = ../../src

# Library name
LNAME  = uclmmbase

DEFS   = @DEFS@
CFLAGS = @CFLAGS@ $(DEFS) -I$(CSRC)
LIBS   = @LIBS@ -L$(CSRC) -l$(LNAME)
CC     = @CC@

TARGET = rtpdemo
OBJS   = rtpdemo.o
SRCS   = $(OBJS:%.o=%.c)

all: $(TARGET)

rtpdemo: $(OBJS) $(CSRC)/lib$(LNAME).a
	 $(CC) $(CFLAGS) -o $@ $(OBJS) $(LIBS)

.c.o:
	$(CC) $(CFLAGS) $(INC) -c $<

$(CSRC)/lib$(LNAME).a:
	cd $(CSRC) && $(MAKE)

clean:
	-rm -f $(OBJS) $(TARGET)

distclean: clean
	-rm -f Makefile

⌨️ 快捷键说明

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