makefile

来自「自己移植的linux下的流媒体播放器原代码,支持mms协议,支持ftp和http」· 代码 · 共 45 行

TXT
45
字号
LIBNAME = libfaad2.ainclude ../config.makSRCS    = bits.c cfft.c common.c decoder.c drc.c error.c filtbank.c hcr.c huffman.c ic_predict.c is.c lt_predict.c mdct.c mp4.c ms.c output.c pns.c ps_dec.c ps_syntax.c  pulse.c rvlc.c sbr_dct.c sbr_dec.c sbr_e_nf.c sbr_fbt.c sbr_hfadj.c sbr_hfgen.c sbr_huff.c sbr_qmf.c sbr_syntax.c sbr_tf_grid.c specrec.c ssr.c ssr_fb.c ssr_ipqf.c syntax.c tns.cOBJS	= $(SRCS:.c=.o)CFLAGS  = -I. $(OPTFLAGS) # Uncomment this to use the FIXED_POINT implementation of FAAD2.# This should improve performance, especially for SBR files.#CFLAGS  = -I. $(OPTFLAGS) -DFIXED_POINT.SUFFIXES: .c .o# .PHONY: all clean.c.o:	$(CC) -c $(CFLAGS) -o $@ $<$(LIBNAME):	$(OBJS)	$(AR) r $(LIBNAME) $(OBJS)	$(RANLIB) $(LIBNAME)all:	$(LIBNAME)clean:	rm -f *.o *.a *~distclean:	rm -f test *.o *.a *~ .dependdep:    dependdepend:	$(CC) -MM $(CFLAGS) $(SRCS) 1>.depend## include dependency files if they exist#ifneq ($(wildcard .depend),)include .dependendif

⌨️ 快捷键说明

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