📄 makefile
字号:
CXXFLAGS = -Wall -pedantic -I../coreTARGETS = test-tcp test-tcp-amr test-tcp-sync test-tcp-jpeg test-tcp-positionall: $(TARGETS)TCPOBJS = ../core/tcpip.o ../core/curtime.o ../core/socketconn.o ../core/circbuf.otest-tcp: test-tcp.o $(TCPOBJS) $(CXX) -o $@ $+test-tcp-amr: test-tcp-amr.o $(TCPOBJS) $(CXX) -o $@ $+test-tcp-sync: test-tcp-sync.o $(TCPOBJS) $(CXX) -o $@ $+test-tcp-jpeg: CXXFLAGS += -I../../libjpegtest-tcp-jpeg: test-tcp-jpeg.o ../core/jpegenc.o $(TCPOBJS) $(CXX) -o $@ $+ -L../../libjpeg -ljpegtest-tcp-theora: test-tcp-theora.o $(TCPOBJS) ../core/theoraenc.o $(CXX) -o $@ $+ -logg -ltheoratheoratest: theoratest.o ../core/theoraenc.o ../core/theoradec.o $(CXX) -o $@ $+ -logg -ltheoratest-tcp-position: test-tcp-position.o $(TCPOBJS) $(CXX) -o $@ $+clean: rm -f $(TARGETS) *.o
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -