Fresco/test/syunit-c++ Makefile.in,NONE,1.1
Stefan Seefeld <[email protected]>
| Newsgroups | gmane.comp.video.fresco.cvs |
|---|---|
| Message-ID | <[email protected]> |
Update of /cvs/fresco/Fresco/test/syunit-c++ In directory purcel:/tmp/cvs-serv20739/syunit-c++ Added Files: Makefile.in Log Message: first part of build system integration --- NEW FILE: Makefile.in --- # $Id: Makefile.in,v 1.1 2003/02/19 22:27:35 stefan Exp $ # # This source file is a part of the Fresco Project. # Copyright (C) 2003 Stefan Seefeld <[email protected]> # 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: $(MAKE) action="doc" xref: $(MAKE) action="xref" install: $(MAKE) action="install" install-doc: $(MAKE) action="install-doc" rpm: dist @(unset CDPATH ; rpm -ta $(distdir).tar.gz) dist: $(distdir).tar.gz $(distdir).tar.gz: @echo "generating $@..." -rm -rf $(distdir) cp -pr $(srcdir) $(distdir) -chmod -R a+r $(distdir) cp config/Prague.spec $(distdir)/config/ tar czhf $(distdir).tar.gz \ --exclude CVS \ --exclude .cvsignore \ --exclude autom4te.cache \ --exclude '*.m4' \ --exclude '*.ac' \ --exclude '*~' \ $(distdir) -rm -rf $(distdir) 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/local.mk config.cache config.log config.status \ config/Prague-config config/synopsis.py \ $(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/local.mk config.cache config.log config.status \ config/Prague-config config/synopsis.py \ $(top_srcdir)/autom4te.cache $(top_srcdir)/config/aclocal.m4 \ $(top_srcdir)/configure