?? makefile
字號:
#compilateur CXX = gccOS = "UNIX"all: FFT# for Unixifeq ($(OS),"UNIX")
@echo Build completedelse
# for Windows
@if exist *.axf echo Build completed
endifclean: rm -f FFT *~ *.o ./test/*~ ./fft/*~CFLAGS = -c -g -O2 -WLIBS = -lmCOMMON = t000008.o t000016.o t000032.o t000064.o t000128.o t000256.o t000512.o t001024.o FFTTest.oFFT: $(COMMON) FFT.o $(CXX) $(COMMON) FFT.o \ -o FFT $(LIBS)FFT.o: fft/FFT.c $(CXX) $(CFLAGS) fft/FFT.c $(LIBS)t000008.o: test/t000008.c
$(CXX) $(CFLAGS) test/t000008.c -o t000008.ot000016.o: test/t000016.c
$(CXX) $(CFLAGS) test/t000016.c -o t000016.ot000032.o: test/t000032.c
$(CXX) $(CFLAGS) test/t000032.c -o t000032.ot000064.o: test/t000064.c
$(CXX) $(CFLAGS) test/t000064.c -o t000064.ot000128.o: test/t000128.c
$(CXX) $(CFLAGS) test/t000128.c -o t000128.ot000256.o: test/t000256.c
$(CXX) $(CFLAGS) test/t000256.c -o t000256.ot000512.o: test/t000512.c
$(CXX) $(CFLAGS) test/t000512.c -o t000512.ot001024.o: test/t001024.c
$(CXX) $(CFLAGS) test/t001024.c -o t001024.oFFTTest.o: test/FFTTest.c fft/FFT.h
$(CXX) $(CFLAGS) test/FFTTest.c -o FFTTest.o
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -