generate_dependencies.sh
来自「The library is a C++/Python implementati」· Shell 代码 · 共 31 行
SH
31 行
#! /bin/sh## This file is a part of the Bayes Blocks library## Copyright (C) 2001-2006 Markus Harva, Antti Honkela, Alexander# Ilin, Tapani Raiko, Harri Valpola and Tomas 謘tman.## This program is free software; you can redistribute it and/or modify# it under the terms of the GNU General Public License as published by# the Free Software Foundation; either version 2, or (at your option)# any later version.## This program is distributed in the hope that it will be useful,# but WITHOUT ANY WARRANTY; without even the implied warranty of# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the# GNU General Public License (included in file License.txt in the# program package) for more details.## $Id: generate_dependencies.sh,v 1.5 2005/07/08 13:43:04 mha Exp $#echo "# Automatically generated, do NOT edit!" > Makefile.dependenciessrcdir=$1shiftfor i in $* ; do (cd $srcdir; cpp -MM -MG $i) >> Makefile.dependenciesdone
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?