X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=Makefile.in;h=eacd01d465ab89616ffc99f05ae3561ddc72f788;hb=1166d4e54bd5358f6449ec937ba50432d5d9c608;hp=178269e59f61dcac9978bf2158e9003afa5bf89e;hpb=d92842594f602cc60b199b7377862a10798dbb7a;p=ocaml-augeas.git diff --git a/Makefile.in b/Makefile.in index 178269e..eacd01d 100644 --- a/Makefile.in +++ b/Makefile.in @@ -26,7 +26,7 @@ OCAMLDOC = @OCAMLDOC@ INSTALL = @INSTALL@ CC = @CC@ -CFLAGS = @CFLAGS@ -fPIC -I$(shell ocamlc -where) +CFLAGS = @CFLAGS@ -fPIC -I$(shell ocamlc -where) -Wall -Werror LDFLAGS = @LDFLAGS@ LIBS = @LIBS@ @@ -55,7 +55,8 @@ test_augeas: test_augeas.cmo test_root test_root: rm -rf $@ mkdir $@ - cp /etc/hosts $@/ + mkdir $@/etc + cp /etc/hosts $@/etc/ # Clean. @@ -76,7 +77,8 @@ endif # Install. install: - ocamlfind install augeas META *.mli *.cmx *.cma *.cmxa *.a *.cmi + ocamlfind install augeas \ + META *.mli *.cmx *.cma *.cmxa *.a augeas.cmi *.so # Standard rules. @@ -111,11 +113,7 @@ dist: ls -l $(PACKAGE)-$(VERSION).tar.gz check-manifest: - @for d in `find -type d -name CVS`; do \ - b=`dirname $$d`/; \ - awk -F/ '$$1 != "D" {print $$2}' $$d/Entries | \ - sed -e "s|^|$$b|" -e "s|^\./||"; \ - done | sort > .check-manifest; \ + hg manifest | sort > .check-manifest; \ sort MANIFEST > .orig-manifest; \ diff -u .orig-manifest .check-manifest; rv=$$?; \ rm -f .orig-manifest .check-manifest; \