📄 makefile
字号:
####################################################################### Makefile for PSIpred2 ########################################################################### CC Command to execute C compiler#### CFLAGS Flags to pass to C compiler.INCDIR = .CC = ccCFLAGS = -OLIBS = -lmall: psipred psipass2 seq2mtx pfiltinstall: /bin/cp psipred psipass2 seq2mtx pfilt ../binclean: /bin/rm -f psipred psipass2 seq2mtx pfiltpsipred: sspred_avpred.c ssdefs.h sspred_net.h $(CC) $(CFLAGS) sspred_avpred.c $(LIBS) -o psipredpsipass2: sspred_hmulti.c ssdefs.h sspred_net2.h $(CC) $(CFLAGS) sspred_hmulti.c $(LIBS) -o psipass2seq2mtx: seq2mtx.c $(CC) $(CFLAGS) seq2mtx.c $(LIBS) -o seq2mtxpfilt: pfilt.c $(CC) $(CFLAGS) pfilt.c $(LIBS) -o pfilt
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -