[Tinyos-commits] CVS: tinyos-1.x/tos/lib/VM .cvsignore, NONE, 1.1 Bootstrap, NONE, 1.1 Makefile.am, NONE, 1.1 configure.ac, NONE, 1.1

David Gay idgay at users.sourceforge.net
Sat Oct 29 13:27:17 PDT 2005


Update of /cvsroot/tinyos/tinyos-1.x/tos/lib/VM
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11739

Added Files:
	.cvsignore Bootstrap Makefile.am configure.ac 
Log Message:
configure land - setup VM to have installable files (currently motlle and
tinysql support stuff)


--- NEW FILE: .cvsignore ---
Makefile
Makefile.in
config-aux
config.log
config.status
configure
aclocal.m4
autom4te.cache

--- NEW FILE: Bootstrap ---
aclocal
autoconf
[ -d config-aux ] || mkdir config-aux
automake -a -c

--- NEW FILE: Makefile.am ---
AUTOMAKE_OPTIONS = foreign

SUBDIRS = languages


--- NEW FILE: configure.ac ---
#!/bin/sh
# Copyright (c) 2005 Intel Corporation
# All rights reserved.
#
# This file is distributed under the terms in the attached INTEL-LICENSE     
# file. If you do not find these files, copies can be found by writing to
# Intel Research Berkeley, 2150 Shattuck Avenue, Suite 1300, Berkeley, CA, 
# 94704.  Attention:  Intel License Inquiry.

dnl -*- m4 -*-

# force autoconf 2.5 on Debian systems
AC_PREREQ(2.50)

AC_INIT(mate, 2.3)
AC_CONFIG_AUX_DIR(config-aux)
AM_INIT_AUTOMAKE
AC_CANONICAL_HOST

AC_PROG_CC

AC_PATH_PROG(pathperl, perl)
if test -z "$pathperl" ; then
  AC_MSG_ERROR(I can't find perl); 
fi

AM_CONDITIONAL([CYGWIN], [test "$CYGWIN"])

AC_OUTPUT(Makefile
	  languages/Makefile
	  languages/motlle/Makefile
	  languages/motlle/mate/Makefile
	  languages/motlle/tools/Makefile
	  languages/tinysql/Makefile)



More information about the Tinyos-commits mailing list