📄 makefile.lib.cc
字号:
all pure: lib$(LIB).a# FIXME needs also to depend on template filesREPOSITORY=ptrepositorylib$(LIB).a: $(OBJS) $(COBJS) $(DEPLIBS) - $(CXX) $(ALL_CXXFLAGS) $(OBJS) $(COBJS) $(DEPLIBS) -rm -f a.out if test -d $(REPOSITORY); then \ i=1; \ tmpdir=/tmp/ar.$$$$; \ rm -fr $$tmpdir; \ mkdir $$tmpdir; \ for o in $(REPOSITORY)/*.o; do \ cp $$o $$tmpdir/$$i.o; \ i=`expr $$i + 1`; \ done ; \ $(AR) r $@ $$tmpdir/*.o ; \ fi $(AR) r $@ $?depend: depend_srcdepend.temp: $(GENSRCS)gen: $(GENSRCS)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -