X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=Makefile.in;h=88647258ac66d4dcd4fd90e9eac430a30ccaef41;hb=afec0d966f7bd8df863672bb16de20bb641746e7;hp=0ff38a4a22f8aeaa4a4035f61d489e8e3669bf7f;hpb=ecdb71cd588848c2da147464949feb137111366f;p=ocaml-augeas.git diff --git a/Makefile.in b/Makefile.in index 0ff38a4..8864725 100644 --- a/Makefile.in +++ b/Makefile.in @@ -42,10 +42,10 @@ export LIBRARY_PATH = . all: mlaugeas.cma mlaugeas.cmxa test_augeas -mlaugeas.cma: augeas_c.o augeas.cmo +mlaugeas.cma: augeas-c.o augeas.cmo ocamlmklib $(LDFLAGS) $(LIBS) -o mlaugeas $^ -mlaugeas.cmxa: augeas_c.o augeas.cmx +mlaugeas.cmxa: augeas-c.o augeas.cmx ocamlmklib $(LDFLAGS) $(LIBS) -o mlaugeas $^ # Test program. @@ -111,13 +111,14 @@ dist: mkdir $(PACKAGE)-$(VERSION) tar -cf - -T MANIFEST | tar -C $(PACKAGE)-$(VERSION) -xf - $(INSTALL) -m 0755 configure $(PACKAGE)-$(VERSION)/ + $(INSTALL) -m 0644 aclocal.m4 $(PACKAGE)-$(VERSION)/ $(INSTALL) -m 0644 config.h.in $(PACKAGE)-$(VERSION)/ tar zcf $(PACKAGE)-$(VERSION).tar.gz $(PACKAGE)-$(VERSION) rm -rf $(PACKAGE)-$(VERSION) 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; \