Initial revision

This commit is contained in:
okuji 2002-12-27 08:53:07 +00:00
commit 6a161fa938
80 changed files with 23264 additions and 0 deletions

11
autogen.sh Normal file
View file

@ -0,0 +1,11 @@
#! /bin/sh
set -e
autoconf
autoheader
for rmk in conf/*.rmk; do
ruby genmk.rb < $rmk > `echo $rmk | sed 's/\.rmk$/.mk/'`
done
exit 0