[Commit] slim .cvsignore, NONE, 1.1 AUTHORS, NONE, 1.1 COPYING, NONE, 1.1 ChangeLog, NONE, 1.1 INSTALL, NONE, 1.1 Makefile.am, NONE, 1.1 NEWS, NONE, 1.1 README, NONE, 1.1 autogen.sh, NONE, 1.1 configure.in, NONE, 1.1

Carl Worth commit at keithp.com
Tue Jul 29 20:52:10 PDT 2003


Committed by: cworth

Update of /local/src/CVS/slim
In directory home.keithp.com:/tmp/cvs-serv16550

Added Files:
	.cvsignore AUTHORS COPYING ChangeLog INSTALL Makefile.am NEWS 
	README autogen.sh configure.in 
Log Message:
Initial commit of slim shell

--- NEW FILE: .cvsignore ---
aclocal.m4
config.cache
config.guess
config.h
config.h.in
config.log
config.status
config.sub
configure
install-sh
Makefile
Makefile.in
missing
mkinstalldirs
stamp-h
stamp-h.in





--- NEW FILE: AUTHORS ---
Richard Henderson <rth at twiddle.net>



--- NEW FILE: COPYING ---
(This appears to be a binary file; contents omitted.)

--- NEW FILE: ChangeLog ---

--- NEW FILE: INSTALL ---
This package uses automake, in order to generate the Makefiles use:

	$ autogen.sh

See the README for information on obtaining any missing libraries.

After that, standard build procedures apply:

	$ make
	# make install


--- NEW FILE: Makefile.am ---
SUBDIRS = . src



--- NEW FILE: NEWS ---

--- NEW FILE: README ---
slim - Shared Library Interface Macros

--- NEW FILE: autogen.sh ---
#!/bin/sh
# Run this to generate all the initial makefiles, etc.

set -e

if test -z "$*"; then
  echo "$0:	Note: \`./configure' will be run with no arguments."
  echo "		If you wish to pass any to it, please specify them on the"
  echo "		\`$0' command line."
  echo
fi

do_cmd() {
    echo "$0: running \`$@'"
    $@
}

do_cmd aclocal-1.4

do_cmd automake-1.4 --add-missing

do_cmd autoconf

do_cmd ./configure ${1+"$@"} && echo "Now type \`make' to compile" || exit 1

--- NEW FILE: configure.in ---
AC_INIT(src/slim.h)

dnl ===========================================================================

SLIM_VERSION=0.1.0
AC_SUBST(SLIM_VERSION)

dnl ===========================================================================

AM_INIT_AUTOMAKE(slim, $SLIM_VERSION)

AM_MAINTAINER_MODE

dnl ===========================================================================

AC_OUTPUT([
Makefile
src/Makefile
])




More information about the Commit mailing list