X-Git-Url: http://git.annexia.org/?p=virt-top.git;a=blobdiff_plain;f=Makefile.in;h=c1a9f5620d4430b78513a0e377eb02fe1c4a0fb1;hp=ce2e803a429c5af49f082f71ca4f7118758c6e57;hb=4572fe6a2493a377d696e3f28996c0236e8e8f4d;hpb=0e09861c06a0c274bcfdacceaee347f8aaa969cb diff --git a/Makefile.in b/Makefile.in index ce2e803..c1a9f56 100644 --- a/Makefile.in +++ b/Makefile.in @@ -1,27 +1,28 @@ +# virt-top +# Copyright (C) 2007-2008 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@ -pkg_lablgtk2 = @pkg_lablgtk2@ -pkg_curses = @pkg_curses@ -pkg_xml_light = @pkg_xml_light@ - -OCAMLDOCFLAGS := -html -sort - -SUBDIRS := libvirt examples mlvirsh - -ifeq ($(pkg_lablgtk2),yes) -SUBDIRS += mlvirtmanager -endif - -ifeq ($(pkg_curses),yes) -SUBDIRS += virt-top -endif +MAKENSIS = @MAKENSIS@ -ifeq ($(pkg_xml_light),yes) -SUBDIRS += virt-df -endif +SUBDIRS = virt-top all opt depend install: for d in $(SUBDIRS); do \ @@ -31,46 +32,33 @@ all opt depend install: clean: for d in . $(SUBDIRS); do \ - (cd $$d; rm -f *.cmi *.cmo *.cmx *.cma *.cmxa *.o *.a *.so *.opt *~ core); \ + (cd $$d; rm -f *.cmi *.cmo *.cmx *.cma *.cmxa *.o *.a *.so *.opt *~ *.dll *.exe core); \ done - rm -f examples/list_domains - rm -f mlvirsh/mlvirsh - rm -f mlvirtmanager/mlvirtmanager rm -f virt-top/virt-top distclean: clean rm -f config.h config.log config.status configure rm -rf autom4te.cache - rm -f META - rm -f libvirt/libvirt_version.ml rm -f Makefile - rm -f libvirt/Makefile - rm -f examples/Makefile - rm -f mlvirsh/Makefile - rm -f mlvirtmanager/Makefile rm -f virt-top/Makefile - rm -f virt-df/Makefile -# Developer documentation (in html/ subdirectory). +# Windows installer (requires NSIS). -doc: - rm -rf html - mkdir html - -cd libvirt; \ - ocamlfind ocamldoc $(OCAMLDOCFLAGS) -d ../html \ - libvirt.{ml,mli} libvirt_version.{ml,mli} +WININSTALLER := $(PACKAGE)-$(VERSION).exe -# Update configure and rerun. +ifneq ($(MAKENSIS),) +wininstaller: $(WININSTALLER) -configure: force - autoreconf - CFLAGS=-g \ - ./configure \ - --enable-debug=yes --with-libvirt=/home/rjones/local +$(WININSTALLER): wininstaller.nsis all opt + "$(MAKENSIS)" \ + //DPACKAGE=$(PACKAGE) //DVERSION=$(VERSION) \ + //DOUTFILE=$@ $< + ls -l $@ +endif # Distribution. -dist: +dist: ChangeLog $(MAKE) check-manifest rm -rf $(PACKAGE)-$(VERSION) mkdir $(PACKAGE)-$(VERSION) @@ -81,32 +69,14 @@ dist: ls -l $(PACKAGE)-$(VERSION).tar.gz check-manifest: - hg manifest | sort > .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 -# Do a release (update the website). - -release: configure - $(MAKE) release_stage_2 - -release_stage_2: clean all opt doc dist - $(MAKE) release_stage_3 - -WEBSITE = ../redhat/et-website - -release_stage_3: - rm -f $(WEBSITE)/ocaml-libvirt/html/*.{html,css} - cp html/*.{html,css} $(WEBSITE)/ocaml-libvirt/html/ - cp $(PACKAGE)-$(VERSION).tar.gz $(WEBSITE)/ocaml-libvirt/ - cp README $(WEBSITE)/ocaml-libvirt/README.txt - cp ChangeLog $(WEBSITE)/ocaml-libvirt/ChangeLog.txt - cp virt-top/virt-top.txt $(WEBSITE)/virt-top/ - cp ChangeLog $(WEBSITE)/virt-top/ChangeLog.txt - -force: +ChangeLog: $(shell find -type f) + ./gitlog-to-changelog > $@.new + mv $@.new $@ -.PHONY: all opt depend install clean distclean configure dist check-manifest \ - release release_stage_2 release_stage_3 force \ No newline at end of file +.PHONY: all opt depend install clean distclean force \ No newline at end of file