Update of /cvs/fresco/Fresco/Documentation
In directory purcel:/tmp/cvs-serv22717
Added Files:
configure.ac Makefile.in
Log Message:
two more files needed for an integrated build of the tutorial
--- NEW FILE: configure.ac ---
dnl $Id: configure.ac,v 1.1 2003/01/22 00:32:02 stefan Exp $
dnl
dnl This source file is a part of the Fresco Project.
dnl Copyright (C) 2002 Stefan Seefeld <stefan@xxxxxxxxxx>
dnl http://www.fresco.org/
dnl
dnl This library is free software; you can redistribute it and/or
dnl modify it under the terms of the GNU Library General Public
dnl License as published by the Free Software Foundation; either
dnl version 2 of the License, or (at your option) any later version.
dnl
dnl This library is distributed in the hope that it will be useful,
dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
dnl Library General Public License for more details.
dnl
dnl You should have received a copy of the GNU Library General Public
dnl License along with this library; if not, write to the
dnl Free Software Foundation, Inc., 675 Mass Ave, Cambridge,
dnl MA 02139, USA.
dnl
dnl Process this file with autoconf to produce a configure script.
dnl ------------------------------------------------------------------
dnl Autoconf initialization
dnl ------------------------------------------------------------------
AC_PREREQ(2.56)
AC_REVISION($Revision: 1.1 $)
AC_INIT(Documentation, M1, devel@xxxxxxxxxx)
AC_CONFIG_SRCDIR(LICENSE)
AC_CONFIG_AUX_DIR(config)
AC_PROG_MAKE_SET
AC_MSG_NOTICE([Output Substitution])
AC_CONFIG_FILES([Makefile src/Makefile])
AC_OUTPUT
--- NEW FILE: Makefile.in ---
# $Id: Makefile.in,v 1.1 2003/01/22 00:32:02 stefan Exp $
#
# This source file is a part of the Fresco Project.
# Copyright (C) 2002 Stefan Seefeld <stefan@xxxxxxxxxx>
# http://www.fresco.org
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Library General Public
# License as published by the Free Software Foundation; either
# version 2 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Library General Public License for more details.
#
# You should have received a copy of the GNU Library General Public
# License along with this library; if not, write to the
# Free Software Foundation, Inc., 675 Mass Ave, Cambridge,
# MA 02139, USA.
SHELL := /bin/sh
srcdir := @srcdir@
top_srcdir := @top_srcdir@
distdir := @PACKAGE_NAME@-@PACKAGE_VERSION@
subdirs := src
# insert inter-directory dependencies below
# Overridden by the clean-targets, allowing the same subdirs-rule to be used
# for everything.
action := all
.PHONY: all $(subdirs)
.PHONY: depend doc install install-doc dist \
uninstall clean distclean maintainer-clean
all: $(subdirs)
# insert inter-directory dependencies here
#(none currently)
$(subdirs):
@echo making $(action) in $@
$(MAKE) -C $@ $(action)
depend:
$(MAKE) action="depend"
doc:
xref:
install:
$(MAKE) action="install"
install-doc:
rpm: dist
@(unset CDPATH ; rpm -ta $(distdir).tar.gz)
dist:
uninstall:
$(MAKE) action="uninstall"
clean:
$(MAKE) action="clean"
distclean:
@echo 'This command removes Makefiles and auxiliary files;'
@echo 'run configure to regenerate them.'
$(MAKE) action="distclean"
rm -rf Makefile config.cache config.log config.status \
$(top_srcdir)/autom4te.cache $(top_srcdir)/config/aclocal.m4
maintainer-clean:
@echo 'This command is intended for maintainers to use;'
@echo 'it deletes configure and auxiliary files;'
@echo 'run autogen.sh to regenerated them.'
$(MAKE) action="maintainer-clean"
rm -rf Makefile config.cache config.log config.status \
$(top_srcdir)/autom4te.cache $(top_srcdir)/config/aclocal.m4 \
$(top_srcdir)/configure
|