Mercurial > hg > octave-jordi
view scripts/mkpkgadd @ 5900:c20eb7330d13
[project @ 2006-07-22 08:31:16 by jwe]
author | jwe |
---|---|
date | Sat, 22 Jul 2006 08:31:17 +0000 (2006-07-22) |
parents | d53c33d93440 |
children | 4270ded9ddc6 |
line wrap: on
line source
#! /bin/sh if [ $# -eq 1 ]; then dir="$1" else echo "usage: mkpkgadd directory" 1>&2 exit 1 fi cd $dir m_files=`ls *.m` cxx_files=`ls *.cc` if [ -n "$m_files" ]; then sed -n 's/^[#%][#%]* *PKG_ADD: *//p' $m_files fi if [ -n "$cxx_files" ]; then sed -n -e 's,^//* *PKG_ADD: *,,p' \ -e 's,^/\** *PKG_ADD: *\(.*\) \*/$,\1,p' $cxx_files fi