blob: 5cf4bc839d0279eadba0a5ebaf402f9693bec477 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
--- a/compiler/Makefile 2023-01-21 22:23:29.676828969 +0100
+++ b/compiler/Makefile 2023-01-21 22:24:16.204141261 +0100
@@ -73,6 +73,9 @@
.ml.cmo:
$(CAMLCOMP) $(COMPFLAGS) -I ../support $<
+maincompile.cmo: copyright.cmo
+maincompile.cmx: copyright.cmx
+
depend: parser.ml parser.mli lexer.ml pplex.ml ppyac.ml ppyac.mli
$(CAMLDEP) *.mli *.ml > .depend
--- a/browser/Makefile 2023-01-25 22:29:40.784044151 +0100
+++ b/browser/Makefile 2023-01-25 22:29:56.579838693 +0100
@@ -18,3 +18,6 @@
dummy.ml:
cp dummyUnix.ml dummy.ml
+
+shell.cmo : dummy.cmo
+shell.cmx : dummy.cmx
--- a/browser/Makefile.shared 2024-06-05 10:08:38.886219581 +0200
+++ b/browser/Makefile.shared 2024-06-05 10:06:05.142920155 +0200
@@ -71,4 +71,7 @@
shell.cmo: dummy.cmi
+dummy.cmi: dummy.ml
+ $(CAMLCOMP) $(INCLUDES) $<
+
include .depend
|