📄 makefile
字号:
CC=gccCFLAGS= -O3 -WallLDFLAGS = -L/usr/local/libLIBS = -lrs -lssl -lmTARGETS=recvfile sendfileDIRS=tigertree test# Install dmalloc-5.2.1 if you want to debug memory management#DMALLOC = -ldmallocOBJS=pmtp.o buffer.o tigertree/tigertree.o tigertree/tiger.o tigertree/sboxes.oall: $(TARGETS) (cd tigertree && make) (cd test && make)tigertree: tigertree/tigertree.o tigertree/tiger.o tigertree/sboxes.o (cd tigertree && make)test: test/test.o (cd test && make)clean: rm -f $(OBJS) $(TARGETS) *.o (cd tigertree && make clean) (cd test && make clean)recvfile: $(OBJS) recvfile.o $(CC) -Wall recvfile.c $(OBJS) $(LDFLAGS) -o recvfile $(LIBS) $(DMALLOC)sendfile: $(OBJS) sendfile.o $(CC) -Wall sendfile.c $(OBJS) $(LDFLAGS) -o sendfile $(LIBS) $(DMALLOC)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -