📄 makefile
字号:
## Makefile for libmp3 code.#LIBMP3 = libmp3.aCFLAGS += -O2OBJS = bitstr.o huff.o mpegsub.o mpegtab.o mpegimdc.o## All mpeg audio formats can be supported, or just mp3.#OBJS += mpeg1dec.o mpeg2dec.o mpeg3dec.o mpegdec.oOBJS += mpeg3dec.o mp3onlydec.o## Integer and floating point decode supported.# The default is floating point, add the following to the# CFLAGS for integer decode.#CFLAGS += -DMPEGAUD_INT -DSPLIT_TABLE -DUSE_IMDCT_TABLEall: $(LIBMP3)$(LIBMP3): $(OBJS) $(AR) crv $(LIBMP3) $(OBJS)clean: rm -f $(LIBMP3) $(OBJS) *.elf *.gdb
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -