?? makefile
字號:
# Makefile for chapter 8TCC=tcc -Otime -cCC=armcc -Otime -cAS=armasm -cpu 5TELD=armlink -oFILES=ch08test.o dot.o fft.o fir.o gen.o iir.o ref_dsp.och08test.axf: $(FILES) $(LD) ch08test.axf $(FILES)ch08test.o: ch08test.c $(CC) ch08test.cgen.o: gen.c $(CC) gen.cref_dsp.o: ref_dsp.c $(CC) ref_dsp.cdot.o: dot.s $(AS) dot.sfft.o: fft.s $(AS) fft.sfir.o: fir.s $(AS) fir.siir.o: iir.s $(AS) iir.sclean: rm *.o *.axf
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -