*** empty log message ***

This commit is contained in:
hyung-hwan 2007-02-04 13:00:37 +00:00
parent 47dda84f12
commit 087367ef35
4 changed files with 15 additions and 16 deletions

6
ase/configure vendored
View File

@ -1,5 +1,5 @@
#! /bin/sh #! /bin/sh
# From configure.ac Revision: 1.73 . # From configure.ac Revision: 1.74 .
# Guess values for system-dependent variables and create Makefiles. # Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.59 for ase deb-0.1.0. # Generated by GNU Autoconf 2.59 for ase deb-0.1.0.
# #
@ -10268,7 +10268,7 @@ then
CFLAGS="$CFLAGS -D_REENTRANT -D_THREAD_SAFE" CFLAGS="$CFLAGS -D_REENTRANT -D_THREAD_SAFE"
fi fi
ac_config_files="$ac_config_files makefile awk/makefile lsp/makefile stx/makefile test/awk/makefile test/lsp/makefile test/stx/makefile" ac_config_files="$ac_config_files makefile awk/makefile lsp/makefile test/awk/makefile test/lsp/makefile"
cat >confcache <<\_ACEOF cat >confcache <<\_ACEOF
# This file is a shell script that caches the results of configure # This file is a shell script that caches the results of configure
@ -10797,10 +10797,8 @@ do
"makefile" ) CONFIG_FILES="$CONFIG_FILES makefile" ;; "makefile" ) CONFIG_FILES="$CONFIG_FILES makefile" ;;
"awk/makefile" ) CONFIG_FILES="$CONFIG_FILES awk/makefile" ;; "awk/makefile" ) CONFIG_FILES="$CONFIG_FILES awk/makefile" ;;
"lsp/makefile" ) CONFIG_FILES="$CONFIG_FILES lsp/makefile" ;; "lsp/makefile" ) CONFIG_FILES="$CONFIG_FILES lsp/makefile" ;;
"stx/makefile" ) CONFIG_FILES="$CONFIG_FILES stx/makefile" ;;
"test/awk/makefile" ) CONFIG_FILES="$CONFIG_FILES test/awk/makefile" ;; "test/awk/makefile" ) CONFIG_FILES="$CONFIG_FILES test/awk/makefile" ;;
"test/lsp/makefile" ) CONFIG_FILES="$CONFIG_FILES test/lsp/makefile" ;; "test/lsp/makefile" ) CONFIG_FILES="$CONFIG_FILES test/lsp/makefile" ;;
"test/stx/makefile" ) CONFIG_FILES="$CONFIG_FILES test/stx/makefile" ;;
"conf_unx.h" ) CONFIG_HEADERS="$CONFIG_HEADERS conf_unx.h" ;; "conf_unx.h" ) CONFIG_HEADERS="$CONFIG_HEADERS conf_unx.h" ;;
*) { { echo "$as_me:$LINENO: error: invalid argument: $ac_config_target" >&5 *) { { echo "$as_me:$LINENO: error: invalid argument: $ac_config_target" >&5
echo "$as_me: error: invalid argument: $ac_config_target" >&2;} echo "$as_me: error: invalid argument: $ac_config_target" >&2;}

View File

@ -1,6 +1,6 @@
AC_PREREQ(2.53) AC_PREREQ(2.53)
AC_INIT([ase], [deb-0.1.0]) AC_INIT([ase], [deb-0.1.0])
AC_REVISION([$Revision: 1.73 $]) AC_REVISION([$Revision: 1.74 $])
AC_CONFIG_HEADER([conf_unx.h]) AC_CONFIG_HEADER([conf_unx.h])
# Checks for programs. # Checks for programs.
@ -76,5 +76,5 @@ then
[CFLAGS="$CFLAGS -D_REENTRANT -D_THREAD_SAFE"] [CFLAGS="$CFLAGS -D_REENTRANT -D_THREAD_SAFE"]
fi fi
AC_CONFIG_FILES([makefile awk/makefile lsp/makefile stx/makefile test/awk/makefile test/lsp/makefile test/stx/makefile]) AC_CONFIG_FILES([makefile awk/makefile lsp/makefile test/awk/makefile test/lsp/makefile])
AC_OUTPUT AC_OUTPUT

View File

@ -1,3 +1,9 @@
/*
* $Id: doc.awk,v 1.8 2007-02-04 13:00:37 bacon Exp $
*
* {License}
*/
global header, mode; global header, mode;
global empty_line_count; global empty_line_count;
global para_started; global para_started;

View File

@ -39,7 +39,8 @@ finalize ()
base="$1"; cur="$2"; dir="$3"; base="$1"; cur="$2"; dir="$3";
elif [ -f "$full" ] elif [ -f "$full" ]
then then
target="$base/ase" root="$base/ase-$VER"
target="$root/ase"
mkdir -p "$target/$cur" mkdir -p "$target/$cur"
case "$full" in case "$full" in
@ -55,24 +56,18 @@ finalize ()
done done
} }
#if [ $# -ne 2 ]
#then
# echo "Usage: $0"
# exit 1
#fi
if [ ! -f ../CVS/Tag ] if [ ! -f ../CVS/Tag ]
then then
echo "Error: ../CVS/Tag not found" echo "Error: ../CVS/Tag not found"
exit 1; exit 1;
fi fi
VER=`cat ../CVS/Tag | cut -c2-` VER=`cat ../CVS/Tag | cut -c6- | tr '[A-Z]' '[a-z]' | sed 's/_/./g`
echo $VER
cwd=`pwd` cwd=`pwd`
cd ".." cd ".."
base=`pwd` base=`pwd`
finalize "$base" "" "" finalize "$base" "" ""
exit 0 exit 0