X-Git-Url: http://git.annexia.org/?p=virt-top.git;a=blobdiff_plain;f=Makefile.in;h=ef2eadca10c1942947f55c6aa4dcbfb8499ed510;hp=bd791fc34bf1f89313b362dca6e7c1c92393da5c;hb=0f6282595fbd36e53f25e42ab451a582818171b8;hpb=1e65c6c293a0f7917e87438330e2583bd38758dd diff --git a/Makefile.in b/Makefile.in index bd791fc..ef2eadc 100644 --- a/Makefile.in +++ b/Makefile.in @@ -1,5 +1,5 @@ -# ocaml-libvirt -# Copyright (C) 2007 Red Hat Inc., Richard W.M. Jones +# 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 @@ -20,30 +20,9 @@ VERSION = @PACKAGE_VERSION@ INSTALL = @INSTALL@ -pkg_extlib = @pkg_extlib@ -pkg_lablgtk2 = @pkg_lablgtk2@ -pkg_curses = @pkg_curses@ -pkg_xml_light = @pkg_xml_light@ +MAKENSIS = @MAKENSIS@ -OCAMLDOCFLAGS := -html -sort - -SUBDIRS := libvirt examples - -ifeq ($(pkg_extlib),yes) -SUBDIRS += mlvirsh -endif - -ifeq ($(pkg_lablgtk2),yes) -SUBDIRS += mlvirtmanager -endif - -ifeq ($(pkg_extlib)$(pkg_curses),yesyes) -SUBDIRS += virt-top -endif - -ifeq ($(pkg_extlib)$(pkg_xml_light),yesyes) -SUBDIRS += virt-df -endif +SUBDIRS = virt-top all opt depend install: for d in $(SUBDIRS); do \ @@ -53,47 +32,19 @@ 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 - rm -f virt-df/virt-df 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). - -doc: - rm -rf html - mkdir html - -cd libvirt; \ - ocamlfind ocamldoc $(OCAMLDOCFLAGS) -d ../html \ - libvirt.{ml,mli} libvirt_version.{ml,mli} - -# Update configure and rerun. - -configure: force - autoreconf - CFLAGS=-g \ - ./configure \ - --enable-debug=yes --with-libvirt=/home/rjones/local # Distribution. -dist: +dist: ChangeLog $(MAKE) check-manifest rm -rf $(PACKAGE)-$(VERSION) mkdir $(PACKAGE)-$(VERSION) @@ -104,43 +55,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/websites - -release_stage_3: - rm -f $(WEBSITE)/ocaml-libvirt/html/*.{html,css} - cp html/*.{html,css} $(WEBSITE)/ocaml-libvirt/html/ - 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 - -# Upload to main website. - -upload: - cd $(WEBSITE)/ocaml-libvirt && \ - scp ChangeLog.txt index.html README.txt Screenshot*.png \ - libvirt.org:/data/www/libvirt.org/ocaml && \ - scp css/*.css \ - libvirt.org:/data/www/libvirt.org/ocaml/css/ && \ - scp html/*.html html/*.css \ - libvirt.org:/data/www/libvirt.org/ocaml/html/ - scp $(PACKAGE)-$(VERSION).tar.gz libvirt.org:/data/ftp/libvirt/ocaml/ - -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