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

📄 makefile.in

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

COMMONLIB=uclmmbase
COMMONSRC=../src
COMMONTGT = $(COMMONSRC)/lib$(COMMONLIB).a

DEFS   = @DEFS@
CFLAGS = -I$(COMMONSRC) @CFLAGS@ $(DEFS) 
LIBS   = -L../src @LIBS@ 
CC     = @CC@

OBJS = test_base64.o test_des.o test_md5.o test_net_udp.o \
       test_memory.o test_mbus_parser.o test_mbus_addr.o  \
       test.o

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

all: test-libcommon

test-libcommon: $(OBJS) $(COMMONTGT)
	$(CC) $(OBJS) $(CFLAGS) $(COMMONTGT) $(LIBS) -o test-libcommon

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

clean:
	-rm -f $(OBJS) tags test-libcommon

distclean:	clean
	-rm -f Makefile

etags:
	etags *.[ch]

ctags:
	ctags *.[ch]

depend: $(SRCS)
	makedepend $(DEFS) $(INC) $(SRCS)

⌨️ 快捷键说明

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