-
Notifications
You must be signed in to change notification settings - Fork 3
/
Makefile.in
62 lines (43 loc) · 1.3 KB
/
Makefile.in
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
DESTDIR=
prefix=@prefix@
exec_prefix=@exec_prefix@
LIBDIR=$(DESTDIR)@libdir@/bytes
HAS_BYTES=@HAS_BYTES@
OCAMLC = @OCAMLC@
OCAMLOPT = @OCAMLOPT@
all: @HAS_BYTES@.@OCAMLBEST@
no.byte: bytes.cma
no.opt: no.byte bytes.cmxa bytes.cmxs
yes.byte:
yes.opt: yes.byte
bytes.cmi: bytes.mli
$(OCAMLC) -c bytes.mli
bytes.cmo: bytes.cmi bytes.ml
$(OCAMLC) -c bytes.ml
bytes.cmx: bytes.cmi bytes.ml
$(OCAMLOPT) -c bytes.ml
bytes.cma: bytes.cmo
$(OCAMLC) -a bytes.cmo -o bytes.cma
bytes.cmxa: bytes.cmx
$(OCAMLOPT) -a bytes.cmx -o bytes.cmxa
bytes.cmxs: bytes.cmx
$(OCAMLOPT) -shared bytes.cmx -o bytes.cmxs
clean:
rm -f bytes.cmi bytes.cmo bytes.cmx bytes.cma bytes.cmxa bytes.cmxs bytes.a bytes.o
distclean: clean
rm -f config.log config.status Makefile
install: install.@HAS_BYTES@.@OCAMLBEST@
install.META:
mkdir -p "$(LIBDIR)"
cp -f META.@HAS_BYTES@ "$(LIBDIR)"/META
install.yes.byte: install.META
install.yes.opt: install.yes.byte
install.no.byte: no.byte install.META
cp -f bytes.cmi bytes.cmo bytes.cma "$(LIBDIR)"
install.no.opt: no.opt install.no.byte
cp -f bytes.a bytes.cmx bytes.cmxa bytes.cmxs "$(LIBDIR)"
uninstall:
rm -rf "$(LIBDIR)"
.PHONY: all no.byte no.opt yes.byte yes.opt install \
install.META install.no.byte install.yes.byte \
install.no.opt install.yes.opt uninstall clean distclean