X-Git-Url: http://git.annexia.org/?p=virt-top.git;a=blobdiff_plain;f=Makefile.in;h=83fc0cbb00e2e10f86cd254c186fefc25e7ece02;hp=703d14eec0e68609400e9a66b2decb9e6a4ebc66;hb=4ded35791664acbb8b1b83abd2e2df899d92bdd8;hpb=3126bfee333b5c635dc60a54265936af06117f6a diff --git a/Makefile.in b/Makefile.in old mode 100755 new mode 100644 index 703d14e..83fc0cb --- a/Makefile.in +++ b/Makefile.in @@ -1,4 +1,4 @@ -# ocaml-libvirt +# virt-top # Copyright (C) 2007 Red Hat Inc., Richard W.M. Jones # # This library is free software; you can redistribute it and/or @@ -20,10 +20,9 @@ VERSION = @PACKAGE_VERSION@ INSTALL = @INSTALL@ -OCAMLDOC = @OCAMLDOC@ -OCAMLDOCFLAGS := -html -sort +MAKENSIS = @MAKENSIS@ -SUBDIRS = @subdirs@ +SUBDIRS = virt-top all opt depend install: for d in $(SUBDIRS); do \ @@ -33,45 +32,29 @@ all opt depend install: clean: for d in . $(SUBDIRS); do \ - (cd $$d; rm -f *.cmi *.cmo *.cmx *.cma *.cmxa *.o *.a *.so *.opt *~ *.dll 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). +# Windows installer (requires NSIS). -ifneq ($(OCAMLDOC),) -doc: - rm -rf html - mkdir html - -cd libvirt; \ - $(OCAMLDOC) $(OCAMLDOCFLAGS) -d ../html \ - libvirt.{ml,mli} libvirt_version.{ml,mli} -endif +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. @@ -92,37 +75,5 @@ check-manifest: 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: - .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