1 #
2 # This file and its contents are supplied under the terms of the
3 # Common Development and Distribution License ("CDDL"), version 1.0.
4 # You may only use this file in accordance with the terms of version
5 # 1.0 of the CDDL.
6 #
7 # A full copy of the text of the CDDL should have accompanied this
8 # source. A copy of the CDDL is also available via the Internet at
9 # http://www.illumos.org/license/CDDL.
10 #
11 #
12 # Copyright (c) 2014 Racktop Systems.
13 # Copyright 2015, OmniTI Computer Consulting, Inc. All rights reserved.
14 #
15
16 # Link against libc as perl solaris specs
17 $(PERLEXT):= LDLIBS += -lc
18 $(PERLEXT64):= LDLIBS += -lc
19
20 # Allow for undefined symbols satisfied by perl
21 $(PERLEXT):= ZDEFS =
22 $(PERLEXT64):= ZDEFS =
23
24 $(ROOTPERLEXT) := FILEMODE = 0555
25 $(ROOTPERLMOD) := FILEMODE = 0444
26 $(ROOTPERLEXT64) := FILEMODE = 0555
27 $(ROOTPERLMOD64) := FILEMODE = 0444
28
29 # CFLAGS for perl, specifically.
30 PCFLAGS= -DPERL_EUPXS_ALWAYS_EXPORT -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 \
31 -DPERL_USE_SAFE_PUTENV -D_TS_ERRNO
32 PCFLAGS64= -m64 -DPERL_EUPXS_ALWAYS_EXPORT -D_LARGEFILE64_SOURCE \
33 -DPERL_USE_SAFE_PUTENV -D_TS_ERRNO
34
35 $(MACH) $(MACH64):
36 $(INS.dir)
37
38 # Sorry about this...
39 # BUILD.SO doesn't have distinct versions like COMPILE.c/COMPILE64.c does.
40 # To that end - we're defining BUILD64.SO here.
41 BUILD64.SO= $(CC) $(CFLAGS64) -o $@ $(GSHARED) $(DYNFLAGS) \
42 $(PICS) $(EXTPICS) -L $(ROOTLIBDIR64) $(LDLIBS)
43
44 $(PERLEXT): $(MACH)/$(MODULE).o
45 $(BUILD.SO) $(MACH)/$(MODULE).o
46
47 $(PERLEXT64): $(MACH64)/$(MODULE).o
48 $(BUILD64.SO) $(MACH64)/$(MODULE).o
49
50 # NOTE: With later version of Perl, we need to define PERL_EUPXS_ALWAYS_EXPORT
51 # which is a backward-compatibility definition for the assumes-5.10 stuff here.
52 $(MACH)/$(MODULE).o: $(MACH)/$(MODULE).c
53 $(COMPILE.c) $(PCFLAGS) $(C_PICFLAGS) -I$(PERLINCDIR) $< -o $@
54
55 $(MACH64)/$(MODULE).o: $(MACH64)/$(MODULE).c
56 $(COMPILE64.c) $(PCFLAGS64) $(C_PICFLAGS) -I$(PERLINCDIR64) $< -o $@
57
58 $(MACH)/$(MODULE).c: $(MACH) $(MODULE).xs
59 $(XSUBPP) $(XSUBPPFLAGS) $(MODULE).xs >$@
60
61 $(MACH64)/$(MODULE).c: $(MACH64) $(MODULE).xs
62 $(XSUBPP64) $(XSUBPPFLAGS) $(MODULE).xs >$@
63
|
1 #
2 # This file and its contents are supplied under the terms of the
3 # Common Development and Distribution License ("CDDL"), version 1.0.
4 # You may only use this file in accordance with the terms of version
5 # 1.0 of the CDDL.
6 #
7 # A full copy of the text of the CDDL should have accompanied this
8 # source. A copy of the CDDL is also available via the Internet at
9 # http://www.illumos.org/license/CDDL.
10 #
11 #
12 # Copyright 2015, OmniTI Computer Consulting, Inc. All rights reserved.
13 # Copyright 2016 RackTop Systems.
14 #
15
16 # Link against libc as perl solaris specs
17 $(PERLEXT):= LDLIBS += -lc
18 $(PERLEXT64):= LDLIBS += -lc
19
20 # Allow for undefined symbols satisfied by perl
21 $(PERLEXT):= ZDEFS =
22 $(PERLEXT64):= ZDEFS =
23
24 $(ROOTPERLEXT) := FILEMODE = 0555
25 $(ROOTPERLMOD) := FILEMODE = 0444
26 $(ROOTPERLEXT64) := FILEMODE = 0555
27 $(ROOTPERLMOD64) := FILEMODE = 0444
28
29 # CFLAGS for perl, specifically.
30 PCFLAGS= -DPERL_EUPXS_ALWAYS_EXPORT -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 \
31 -DPERL_USE_SAFE_PUTENV -D_TS_ERRNO
32 PCFLAGS64= -DPERL_EUPXS_ALWAYS_EXPORT -D_LARGEFILE64_SOURCE \
33 -DPERL_USE_SAFE_PUTENV -D_TS_ERRNO
34
35 $(MACH) $(MACH64):
36 $(INS.dir)
37
38 $(PERLEXT): $(MACH)/$(MODULE).o
39 $(BUILD.SO) $(MACH)/$(MODULE).o
40
41 $(PERLEXT64): $(MACH64)/$(MODULE).o
42 $(BUILD64.SO) $(MACH64)/$(MODULE).o
43
44 # NOTE: With later version of Perl, we need to define PERL_EUPXS_ALWAYS_EXPORT
45 # which is a backward-compatibility definition for the assumes-5.10 stuff here.
46 $(MACH)/$(MODULE).o: $(MACH)/$(MODULE).c
47 $(COMPILE.c) $(PCFLAGS) $(C_PICFLAGS) -I$(PERLINCDIR) $< -o $@
48
49 $(MACH64)/$(MODULE).o: $(MACH64)/$(MODULE).c
50 $(COMPILE64.c) $(PCFLAGS64) $(C_PICFLAGS) -I$(PERLINCDIR64) $< -o $@
51
52 $(MACH)/$(MODULE).c: $(MACH) $(MODULE).xs
53 $(XSUBPP) $(XSUBPPFLAGS) $(MODULE).xs >$@
54
55 $(MACH64)/$(MODULE).c: $(MACH64) $(MODULE).xs
56 $(XSUBPP64) $(XSUBPPFLAGS) $(MODULE).xs >$@
57
|