Skip to content

Commit

Permalink
OS-7412 Need idnkit for g11n
Browse files Browse the repository at this point in the history
Reviewed by: Joshua M. Clulow <[email protected]>
Reviewed by: John Levon <[email protected]>
Approved by: Joshua M. Clulow <[email protected]>
  • Loading branch information
rmustacc committed Dec 1, 2018
1 parent 7d13771 commit 084e320
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 2 deletions.
11 changes: 9 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,12 @@ include $(CURDIR)/../../build.env
BASE = $(CURDIR)
DESTDIR = $(BASE)/proto

#
# This contains items that we only build during the strap build itself.
#
STRAP_ONLY = \
idnkit

ifeq ($(STRAP),strap)

STRAPPROTO = $(DESTDIR)
Expand All @@ -41,7 +47,8 @@ SUBDIRS = \
nss-nspr \
openssl1x \
perl \
$(EXTRA_COMPILERS)
$(EXTRA_COMPILERS) \
$(STRAP_ONLY)

STRAPFIX += $(PRIMARY_COMPILER) $(EXTRA_COMPILERS)
STRAPFIX_SUBDIRS=$(STRAPFIX:%=%.strapfix)
Expand Down Expand Up @@ -224,7 +231,7 @@ install: $(PRIMARY_COMPILER) $(SUBDIRS)
endif

clean:
-for dir in $(PRIMARY_COMPILER) $(SUBDIRS) binutils; \
-for dir in $(PRIMARY_COMPILER) $(SUBDIRS) $(STRAP_ONLY) binutils; \
do (cd $$dir; $(MAKE) DESTDIR=$(DESTDIR) clean); done
-rm -rf proto

Expand Down
24 changes: 24 additions & 0 deletions idnkit/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
#
# This file and its contents are supplied under the terms of the
# Common Development and Distribution License ("CDDL"), version 1.0.
# You may only use this file in accordance with the terms of version
# 1.0 of the CDDL.
#
# A full copy of the text of the CDDL should have accompanied this
# source. A copy of the CDDL is also available via the Internet at
# http://www.illumos.org/license/CDDL.
#

#
# Copyright 2018 Joyent, Inc.
#

VER = idnkit-2.3

include ../Makefile.defs

TARBALL = $(VER).tar.bz2
TARBALL_COMPRESS = -j

include ../Makefile.targ
include ../Makefile.targ.autoconf
Binary file added idnkit/idnkit-2.3.tar.bz2
Binary file not shown.

0 comments on commit 084e320

Please sign in to comment.