File tree 3 files changed +33
-2
lines changed
3 files changed +33
-2
lines changed Original file line number Diff line number Diff line change @@ -22,6 +22,12 @@ include $(CURDIR)/../../build.env
22
22
BASE = $(CURDIR )
23
23
DESTDIR = $(BASE ) /proto
24
24
25
+ #
26
+ # This contains items that we only build during the strap build itself.
27
+ #
28
+ STRAP_ONLY = \
29
+ idnkit
30
+
25
31
ifeq ($(STRAP ) ,strap)
26
32
27
33
STRAPPROTO = $(DESTDIR )
@@ -41,7 +47,8 @@ SUBDIRS = \
41
47
nss-nspr \
42
48
openssl1x \
43
49
perl \
44
- $(EXTRA_COMPILERS )
50
+ $(EXTRA_COMPILERS ) \
51
+ $(STRAP_ONLY )
45
52
46
53
STRAPFIX += $(PRIMARY_COMPILER ) $(EXTRA_COMPILERS )
47
54
STRAPFIX_SUBDIRS=$(STRAPFIX:% =%.strapfix)
@@ -224,7 +231,7 @@ install: $(PRIMARY_COMPILER) $(SUBDIRS)
224
231
endif
225
232
226
233
clean :
227
- -for dir in $(PRIMARY_COMPILER ) $(SUBDIRS ) binutils; \
234
+ -for dir in $(PRIMARY_COMPILER ) $(SUBDIRS ) $( STRAP_ONLY ) binutils; \
228
235
do (cd $$ dir; $( MAKE) DESTDIR=$( DESTDIR) clean); done
229
236
-rm -rf proto
230
237
Original file line number Diff line number Diff line change
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
+ #
13
+ # Copyright 2018 Joyent, Inc.
14
+ #
15
+
16
+ VER = idnkit-2.3
17
+
18
+ include ../Makefile.defs
19
+
20
+ TARBALL = $(VER ) .tar.bz2
21
+ TARBALL_COMPRESS = -j
22
+
23
+ include ../Makefile.targ
24
+ include ../Makefile.targ.autoconf
You can’t perform that action at this time.
0 commit comments