Add .gitignore file.
[ocaml-augeas.git] / Makefile.in
index 6a9b918..eacd01d 100644 (file)
@@ -77,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.
 
@@ -112,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; \