X-Git-Url: http://git.annexia.org/?p=virt-top.git;a=blobdiff_plain;f=Makefile.in;h=d0aec17f9a20a8ac33bad7281cd7917eaf185e51;hp=ef2eadca10c1942947f55c6aa4dcbfb8499ed510;hb=HEAD;hpb=2a8acd07005f2e8cdc43a6cc2a4e6f3d66f9fc4d diff --git a/Makefile.in b/Makefile.in deleted file mode 100644 index ef2eadc..0000000 --- a/Makefile.in +++ /dev/null @@ -1,68 +0,0 @@ -# virt-top -# Copyright (C) 2007-2009 Red Hat Inc., Richard W.M. Jones -# -# This library is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser 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 -# Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public -# License along with this library; if not, write to the Free Software -# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - -PACKAGE = @PACKAGE_NAME@ -VERSION = @PACKAGE_VERSION@ - -INSTALL = @INSTALL@ - -MAKENSIS = @MAKENSIS@ - -SUBDIRS = virt-top - -all opt depend install: - for d in $(SUBDIRS); do \ - $(MAKE) -C $$d $@; \ - if [ $$? -ne 0 ]; then exit 1; fi; \ - done - -clean: - for d in . $(SUBDIRS); do \ - (cd $$d; rm -f *.cmi *.cmo *.cmx *.cma *.cmxa *.o *.a *.so *.opt *~ *.dll *.exe core); \ - done - rm -f virt-top/virt-top - -distclean: clean - rm -f config.h config.log config.status configure - rm -rf autom4te.cache - rm -f Makefile - rm -f virt-top/Makefile - -# Distribution. - -dist: ChangeLog - $(MAKE) check-manifest - rm -rf $(PACKAGE)-$(VERSION) - mkdir $(PACKAGE)-$(VERSION) - tar -cf - -T MANIFEST | tar -C $(PACKAGE)-$(VERSION) -xf - - $(INSTALL) -m 0755 configure $(PACKAGE)-$(VERSION)/ - tar zcf $(PACKAGE)-$(VERSION).tar.gz $(PACKAGE)-$(VERSION) - rm -rf $(PACKAGE)-$(VERSION) - ls -l $(PACKAGE)-$(VERSION).tar.gz - -check-manifest: - git ls-files | sort > .check-manifest; \ - sort MANIFEST > .orig-manifest; \ - diff -u .orig-manifest .check-manifest; rv=$$?; \ - rm -f .orig-manifest .check-manifest; \ - exit $$rv - -ChangeLog: $(shell find -type f) - ./gitlog-to-changelog > $@.new - mv $@.new $@ - -.PHONY: all opt depend install clean distclean force \ No newline at end of file