diff options
-rw-r--r-- | src/Makefile.OCaml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/Makefile.OCaml b/src/Makefile.OCaml index 427f131..fabd9d8 100644 --- a/src/Makefile.OCaml +++ b/src/Makefile.OCaml @@ -95,7 +95,7 @@ buildexecutable:: ### Default parameters # Generate backtrace information for exceptions -CAMLFLAGS+=-g +CAMLFLAGS+=-g -unsafe-string INCLFLAGS=-I lwt -I ubase -I system CAMLFLAGS+=$(INCLFLAGS) @@ -427,6 +427,8 @@ win32rc/unison.res.lib: win32rc/unison.res @echo "$(CAMLC): $< ---> $@" $(CAMLC) $(CAMLFLAGS) -c $(CWD)/$< +fswatch.cmi : ubase/prefs.cmi + %.cmo: %.ml @echo "$(OCAMLC): $< ---> $@" $(OCAMLC) $(CAMLFLAGS) -c $(CWD)/$< |