Skip to content

Commit

Permalink
fix makefile issue
Browse files Browse the repository at this point in the history
  • Loading branch information
maiste authored and whitequark committed Nov 18, 2021
1 parent 7b58c8f commit 11faa32
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
build:
dune build .
dune build -p inotify

test:
test: build
dune runtest

doc:
Expand Down
3 changes: 2 additions & 1 deletion dune-project
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
(homepage "https://github.com/whitequark/ocaml-inotify")
(documentation "http://whitequark.github.io/ocaml-inotify")
(bug_reports "https://github.com/whitequark/ocaml-inotify/issues")
(source (github maiste/ocaml-inotify))
(source (github whitequark/ocaml-inotify))

(package
(name inotify)
Expand All @@ -19,6 +19,7 @@
base-bytes
(fileutils (and :with-test (>= 0.4.4)))
(ounit2 (and :with-test (>= 2.0)))
(lwt :with-test)
(odoc :with-doc))
(depopts
lwt))
3 changes: 2 additions & 1 deletion inotify.opam
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ depends: [
"base-bytes"
"fileutils" {with-test & >= "0.4.4"}
"ounit2" {with-test & >= "2.0"}
"lwt" {with-test}
"odoc" {with-doc}
]
depopts: ["lwt"]
Expand All @@ -33,4 +34,4 @@ build: [
]
["dune" "install" "-p" name "--create-install-files" name]
]
dev-repo: "git+https://github.com/maiste/ocaml-inotify.git#dune-universe-v2.3.0"
dev-repo: "git+https://github.com/whitequark/ocaml-inotify.git"
2 changes: 1 addition & 1 deletion lib_test/dune
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@

(test
(name test_inotify_lwt)
(libraries ounit2 inotify.lwt fileutils )
(libraries ounit2 inotify.lwt fileutils)
(modules test_inotify_lwt))

0 comments on commit 11faa32

Please sign in to comment.