?? 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 + -