blob: d60e1117f6970af402825eb73b8e4275c1ad2a58 (
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
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
|
include Makefile-vars
.PHONY: in-place mk-version-symlinks install-dirs install
in-place ::
@if test -x "./post-inplace-script" ; then \
echo "Running project-specific post-inplace script ..." ; \
./post-inplace-script $(platform) `pwd` \
$(package)-$(version); \
echo "Done" ; \
fi
@echo "Finished configuring..to use, add `pwd`/bin/$(platform) to your PATH."
install ::
$(INSTALL_DIR) $(bindir)
(cd lib/$(platform); find . -type d -exec sh -c '$(INSTALL_DIR) $$0 $(libdir)/$$0' {} \; )
(cd share; find . -type d -exec sh -c '$(INSTALL_DIR) $(datadir)/$$0' {} \; )
install::
$(MAKE) -C includes install DOING_BIN_DIST=YES
$(MAKE) -C driver install DOING_BIN_DIST=YES
$(MAKE) -C utils install DOING_BIN_DIST=YES
$(MAKE) -C rts install DOING_BIN_DIST=YES
$(MAKE) -C libraries install DOING_BIN_DIST=YES
$(MAKE) -C compiler install DOING_BIN_DIST=YES
install :: install-docs postinstall denounce
.PHONY: postinstall denounce
denounce:
@echo
@echo =======================================================================
@echo Installation of $(package)-$(version) was successful.
@echo
@echo To use, add $(bindir) to your PATH.
@echo
@if test -f share/html/index.html; then \
echo For documentation, see $(htmldir)/index.html ; \
elif test -d share/html ; then \
echo Docs can be found in $(htmldir). ; \
else \
echo "Warning: this binary distribution does NOT contain documentation!" ; \
fi
@echo =======================================================================
postinstall:
@if test -x "./post-install-script" ; then \
echo "Running project-specific post-install script ..." ; \
./post-install-script $(platform) $(libdir) ; \
echo "Done" ; \
fi
show-install-setup:
@echo "Install setup..."
@echo "bindir = $(bindir)"
@echo "libdir = $(libdir) (libdir = $(libdir))"
@echo "datadir = $(datadir) (datadir = $(datadir))"
#
# Documentation targets: install-docs.
#
.PHONY: show-install-setup install-docs install-dirs-docs
install-docs : install-dirs-docs
if test -d share/html ; then $(CP) -r share/html/* $(htmldir) ; fi
set -e; for i in share/*.ps; do \
if test -f "$$i"; then \
$(CP) $$i $(psdir) ; \
fi \
done
install-dirs-docs:
$(INSTALL_DIR) $(htmldir)
|