forked from ocaml/opam
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
166 lines (126 loc) · 4.32 KB
/
Makefile
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
ifeq ($(findstring clean,$(MAKECMDGOALS)),)
-include Makefile.config
endif
all: opam opam-installer
@
ifeq ($(JBUILDER),)
JBUILDER_FILE = src_ext/jbuilder/_build/install/default/bin/jbuilder$(EXE)
ifeq ($(shell command -v cygpath 2>/dev/null),)
JBUILDER := $(JBUILDER_FILE)
else
JBUILDER := $(shell echo "$(JBUILDER_FILE)" | cygpath -f - -a)
endif
else
JBUILDER_FILE=
endif
OPAMINSTALLER = ./opam-installer$(EXE)
ALWAYS:
@
JBUILDER_DEP = ALWAYS $(JBUILDER_FILE)
src_ext/jbuilder/_build/install/default/bin/jbuilder$(EXE): src_ext/jbuilder.stamp
cd src_ext/jbuilder && ocaml bootstrap.ml && ./boot.exe
src_ext/jbuilder.stamp:
$(MAKE) -C src_ext jbuilder.stamp
jbuilder: $(JBUILDER_DEP)
@$(JBUILDER) build $(JBUILDER_ARGS) @install
opam: $(JBUILDER_DEP) opam.install
$(LN_S) -f _build/default/src/client/opamMain.exe $@$(EXE)
opam-installer: $(JBUILDER_DEP)
$(JBUILDER) build $(JBUILDER_ARGS) src/tools/opam_installer.exe
$(LN_S) -f _build/default/src/tools/opam_installer.exe $@$(EXE)
opam-admin.top: $(JBUILDER_DEP)
$(JBUILDER) build $(JBUILDER_ARGS) src/tools/opam_admin_top.bc
$(LN_S) -f _build/default/src/tools/opam_admin_top.bc $@$(EXE)
lib-ext:
$(MAKE) -j -C src_ext lib-ext
download-ext:
$(MAKE) -C src_ext cache-archives
clean-ext:
$(MAKE) -C src_ext distclean
clean:
$(MAKE) -C doc $@
rm -f *.install *.env *.err *.info *.out opam$(EXE) opam-admin.top$(EXE) opam-installer$(EXE)
rm -rf _build
distclean: clean clean-ext
rm -rf autom4te.cache bootstrap
rm -f Makefile.config config.log config.status aclocal.m4
rm -f src/*.META src/*/.merlin
OPAMINSTALLER_FLAGS = --prefix "$(DESTDIR)$(prefix)"
OPAMINSTALLER_FLAGS += --mandir "$(DESTDIR)$(mandir)"
# With ocamlfind, prefer to install to the standard directory rather
# than $(prefix) if there are no overrides
ifdef OCAMLFIND
ifndef DESTDIR
ifneq ($(OCAMLFIND),no)
LIBINSTALL_DIR ?= $(shell $(OCAMLFIND) printconf destdir)
endif
endif
endif
ifneq ($(LIBINSTALL_DIR),)
OPAMINSTALLER_FLAGS += --libdir "$(LIBINSTALL_DIR)"
endif
opam-devel.install: $(JBUILDER_DEP)
$(JBUILDER) build $(JBUILDER_ARGS) -p opam opam.install
sed -e "s/bin:/libexec:/" opam.install > $@
opam-%.install: $(JBUILDER_DEP)
$(JBUILDER) build $(JBUILDER_ARGS) -p opam-$* $@
opam.install: $(JBUILDER_DEP)
$(JBUILDER) build $(JBUILDER_ARGS) opam-installer.install opam.install
opam-actual.install: opam.install
@echo 'bin: [' > $@
@grep -h 'bin/[^/]*' $^ >> $@
@echo ']' >> $@
@echo 'man: [' >>$@
@$(patsubst %,echo ' "'%'"' >>$@;,$(wildcard doc/man/*.1))
@echo ']' >>$@
@echo 'doc: [' >>$@
@$(foreach x,$(wildcard doc/man-html/*.html),\
echo ' "$x" {"man/$(notdir $x)"}' >>$@;)
@$(foreach x,$(wildcard doc/pages/*.html),\
echo ' "$x" {"$(notdir $x)"}' >>$@;)
@echo ']' >>$@
OPAMLIBS = core format solver repository state client
opam-%: $(JBUILDER_DEP)
$(JBUILDER) build $(JBUILDER_ARGS) opam-$*.install
opam-lib: $(JBUILDER_DEP)
$(JBUILDER) build $(JBUILDER_ARGS) $(patsubst %,opam-%.install,$(OPAMLIBS))
installlib-%: opam-installer opam-%.install
$(if $(wildcard src_ext/lib/*),\
$(error Installing the opam libraries is incompatible with embedding \
the dependencies. Run 'make clean-ext' and try again))
$(OPAMINSTALLER) $(OPAMINSTALLER_FLAGS) opam-$*.install
uninstalllib-%: opam-installer opam-%.install
$(OPAMINSTALLER) -u $(OPAMINSTALLER_FLAGS) opam-$*.install
libinstall: $(JBUILDER_DEP) opam-admin.top $(OPAMLIBS:%=installlib-%)
@
install: opam-actual.install
$(OPAMINSTALLER) $(OPAMINSTALLER_FLAGS) $<
$(OPAMINSTALLER) $(OPAMINSTALLER_FLAGS) opam-installer.install
libuninstall: $(OPAMLIBS:%=uninstalllib-%)
@
uninstall: opam-actual.install
$(OPAMINSTALLER) -u $(OPAMINSTALLER_FLAGS) $<
.PHONY: tests tests-local tests-git
tests: $(JBUILDER_DEP)
$(JBUILDER) runtest $(JBUILDER_ARGS)
# tests-local, tests-git
tests-%:
$(MAKE) -C tests $*
.PHONY: doc
doc: all
$(MAKE) -C doc
.PHONY: man man-html
man man-html: opam opam-installer
$(MAKE) -C doc $@
configure: configure.ac m4/*.m4
aclocal -I m4
autoconf
release-%:
$(MAKE) -C release TAG="$*"
cold:
env MAKE=$(MAKE) ./shell/bootstrap-ocaml.sh
env PATH="`pwd`/bootstrap/ocaml/bin:$$PATH" ./configure $(CONFIGURE_ARGS)
env PATH="`pwd`/bootstrap/ocaml/bin:$$PATH" $(MAKE) lib-ext
env PATH="`pwd`/bootstrap/ocaml/bin:$$PATH" $(MAKE)
cold-%:
env PATH="`pwd`/bootstrap/ocaml/bin:$$PATH" $(MAKE) $*