forked from garglk/garglk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJamshared
92 lines (68 loc) · 2.04 KB
/
Jamshared
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
#
# Extend the Jambase to build shared libraries.
#
SUFDLL ?= .so ;
rule SharedLibrary
{
SharedLibraryFromObjects $(<) : $(>:S=$(SUFOBJ)) ;
Objects $(>) ;
}
rule SharedLibraryFromObjects
{
local _i _l _s ;
# Add grist to file names
_s = [ FGristFiles $(>) ] ;
_l = $(<:S=$(SUFDLL)) ;
# library depends on its member objects
Depends obj : $(_s) ;
# Set LOCATE for the library and its contents. The bound
# value shows up as $(NEEDLIBS) on the Link actions.
# For compatibility, we only do this if the library doesn't
# already have a path.
if ! $(_l:D)
{
MakeLocate $(_l) $(_l)($(_s:BS)) : $(LOCATE_TARGET) ;
}
# make the library depend directly on the on-disk object files.
Depends $(_l) : $(_s) ;
Clean clean : $(_l) ;
SharedLink $(_l) : $(_s) ;
}
rule SharedLinkLibraries
{
# make library dependencies of target
# set NEEDLIBS variable used by 'actions Main'
local _t = [ FAppendSuffix $(<) : $(SUFEXE) ] ;
Depends $(_t) : $(>:S=$(SUFDLL)) ;
NEEDLIBS on $(_t) += $(>:S=$(SUFDLL)) ;
}
rule LinkLibrariesOnSharedLibrary
{
# make library dependencies of target
# set NEEDLIBS variable used by 'actions Main'
local _t = [ FAppendSuffix $(<) : $(SUFDLL) ] ;
Depends $(_t) : $(>:S=$(SUFLIB)) ;
NEEDLIBS on $(_t) += $(>:S=$(SUFLIB)) ;
}
rule SharedLinkLibrariesOnSharedLibrary
{
# make library dependencies of target
# set NEEDLIBS variable used by 'actions Main'
local _t = [ FAppendSuffix $(<) : $(SUFDLL) ] ;
Depends $(_t) : $(>:S=$(SUFDLL)) ;
NEEDLIBS on $(_t) += $(>:S=$(SUFDLL)) ;
}
if $(OS) = MACOSX
{
actions together SharedLink bind NEEDLIBS
{
$(LINK) -headerpad_max_install_names $(FRAMEWORKS) $(MAINARCH) $(ALTARCH) -dynamiclib $(SHRLINKFLAGS) -install_name @executable_path/$(<:D=) -o $(<) $(>) $(NEEDLIBS) $(SHRLINKLIBS)
}
}
else
{
actions together SharedLink bind NEEDLIBS
{
$(LINK) -shared $(SHRLINKFLAGS) -Wl,-soname,$(<:D=) -o $(<) $(>) $(NEEDLIBS) $(SHRLINKLIBS)
}
}