Andy Stormont | c9f77c5 | 2014-01-29 20:53:24 +0000 | [diff] [blame] | 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. |
Dan McDonald | 1f2ca51 | 2015-02-09 10:59:49 -0500 | [diff] [blame] | 13 | # Copyright 2015, OmniTI Computer Consulting, Inc. All rights reserved. |
Andy Stormont | c9f77c5 | 2014-01-29 20:53:24 +0000 | [diff] [blame] | 14 | # |
| 15 | |
| 16 | include $(SRC)/lib/Makefile.lib |
| 17 | |
Dan McDonald | 1f2ca51 | 2015-02-09 10:59:49 -0500 | [diff] [blame] | 18 | # PERL_VERSION and PERL_ARCH used to be set here, |
| 19 | # but as they were also needed in usr/src/pkg/Makefile, |
Alexander Pyhalov | 3339235 | 2014-06-05 10:24:33 +0400 | [diff] [blame] | 20 | # the definition was moved to usr/src/Makefile.master |
Andy Stormont | c9f77c5 | 2014-01-29 20:53:24 +0000 | [diff] [blame] | 21 | |
Andy Stormont | c9f77c5 | 2014-01-29 20:53:24 +0000 | [diff] [blame] | 22 | PERLDIR = $(ADJUNCT_PROTO)/usr/perl5/$(PERL_VERSION) |
| 23 | PERLLIBDIR = $(PERLDIR)/lib/$(PERL_ARCH) |
| 24 | PERLINCDIR = $(PERLLIBDIR)/CORE |
| 25 | |
| 26 | PERLMOD = $(MODULE).pm |
| 27 | PERLEXT = $(MACH)/$(MODULE).so |
| 28 | |
| 29 | ROOTPERLDIR = $(ROOT)/usr/perl5/$(PERL_VERSION) |
| 30 | ROOTPERLLIBDIR = $(ROOTPERLDIR)/lib/$(PERL_ARCH) |
| 31 | ROOTPERLMODDIR = $(ROOTPERLLIBDIR)/Sun/Solaris |
| 32 | ROOTPERLEXTDIR = $(ROOTPERLLIBDIR)/auto/Sun/Solaris/$(MODULE) |
| 33 | |
| 34 | ROOTPERLMOD = $(ROOTPERLMODDIR)/$(MODULE).pm |
| 35 | ROOTPERLEXT = $(ROOTPERLEXTDIR)/$(MODULE).so |
Richard Lowe | c789312 | 2014-04-06 12:58:12 -0400 | [diff] [blame] | 36 | |
Yuri Pankov | bd0ce62 | 2018-02-05 08:52:36 +0300 | [diff] [blame] | 37 | CSTD = $(CSTD_GNU99) |