Mercurial > hg > octave-lojdl
view src/mkops @ 3225:7aae2c3636a7
[project @ 1998-12-04 23:20:12 by jwe]
author | jwe |
---|---|
date | Fri, 04 Dec 1998 23:20:26 +0000 |
parents | b779a5b8aed4 |
children | 02fcb550f20c |
line wrap: on
line source
#!/bin/sh cat << \EOF // DO NOT EDIT! Generated automatically by mkbuiltins. #ifdef HAVE_CONFIG_H #include "config.h" #endif extern void install_base_type_conversions (void); EOF for file in "$@"; do f=`echo $file | sed 's,^\./,,; s%^OPERATORS/op-%%; s%\.cc%%; s%-%_%g'` echo "extern void install_${f}_ops (void);" done cat << \EOF void install_ops (void) { install_base_type_conversions (); EOF for file in "$@"; do f=`echo $file | sed 's,^\./,,; s%^OPERATORS/op-%%; s%\.cc%%; s%-%_%g'` echo " install_${f}_ops ();" done cat << \EOF } EOF exit 0