Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 424541 | Differences between
and this patch

Collapse All | Expand All

(-)a/Makefile.in (-2 / +5 lines)
Lines 30-36 Link Here
30
30
31
bytecode: sqlite3.cma sqlite3top
31
bytecode: sqlite3.cma sqlite3top
32
32
33
opt: sqlite3.cmxa
33
opt: sqlite3.cmxs
34
35
sqlite3.cmxs: sqlite3.cmxa
36
	ocamlopt -shared -linkall $< -o $@
34
37
35
test:	bytecode opt
38
test:	bytecode opt
36
	@cd test && $(MAKE) all
39
	@cd test && $(MAKE) all
Lines 46-52 Link Here
46
# one in .
49
# one in .
47
install: sqlite3.cma sqlite3top
50
install: sqlite3.cma sqlite3top
48
	[ -f *.so ] && SO_FILES=*.so; \
51
	[ -f *.so ] && SO_FILES=*.so; \
49
	ocamlfind install sqlite3 META sqlite3.cmi sqlite3.mli sqlite3.cma $(wildcard *.cmxa *.a *.cmx) $$SO_FILES
52
	ocamlfind install sqlite3 META sqlite3.cmi sqlite3.mli sqlite3.cma $(wildcard *.cmxs *.cmxa *.a *.cmx) $$SO_FILES
50
	ocamlfind ocamlmktop -o sqlite3top -package "sqlite3" sqlite3.cma
53
	ocamlfind ocamlmktop -o sqlite3top -package "sqlite3" sqlite3.cma
51
	$(INSTALL) sqlite3top $(bindir)/sqlite3top
54
	$(INSTALL) sqlite3top $(bindir)/sqlite3top
52
55

Return to bug 424541