Skip to content

Commit 6177073

Browse files
authored
Fix runtime/dune (remove .depend hack) (#460)
1 parent 1a0101e commit 6177073

File tree

1 file changed

+4
-8
lines changed

1 file changed

+4
-8
lines changed

runtime/dune

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,10 @@
3434
io.c extern.c intern.c hash.c sys.c meta.c parsing.c gc_ctrl.c md5.c
3535
obj.c lexing.c callback.c debugger.c weak.c compact.c finalise.c
3636
custom.c dynlink.c spacetime_byt.c afl.c unix.c win32.c bigarray.c
37-
main.c memprof.c domain.c caml/domain_state.tbl eventlog.c)
37+
main.c memprof.c domain.c caml/domain_state.tbl eventlog.c .depend)
3838
(action
3939
(progn
40-
(bash "touch .depend") ; hack.
41-
(run make %{targets})
42-
(bash "rm -f .depend"))))
40+
(run make %{targets}))))
4341

4442
(rule
4543
(targets libasmrun.a)
@@ -53,12 +51,10 @@
5351
parsing.c gc_ctrl.c md5.c obj.c lexing.c unix.c printexc.c callback.c weak.c
5452
compact.c finalise.c custom.c globroots.c backtrace_nat.c backtrace.c
5553
dynlink_nat.c debugger.c meta.c dynlink.c clambda_checks.c spacetime_nat.c
56-
spacetime_snapshot.c afl.c bigarray.c memprof.c eventlog.c)
54+
spacetime_snapshot.c afl.c bigarray.c memprof.c eventlog.c .depend)
5755
(action
5856
(progn
59-
(bash "touch .depend") ; hack.
60-
(run make %{targets})
61-
(bash "rm -f .depend"))))
57+
(run make %{targets}))))
6258

6359
;; HACK
6460
(library

0 commit comments

Comments
 (0)