|
root / base / usr / src / cmd / krb5 / Makefile
Makefile Makefile 44 lines 772 B
 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
#
# Copyright 2007 Sun Microsystems, Inc.  All rights reserved.
# Use is subject to license terms.
#
# cmd/krb5/Makefile
#
# Build everything in parallel; use .WAIT for dependencies
.PARALLEL:

# Hammerhead: ldap_util (kdb5_ldap_util) removed (libsldap chain removal,
# Phase 1).
SUBDIRS= \
	kwarn	.WAIT	\
	krb5kdc \
	kadmin	\
	kdestroy	\
	kinit	\
	klist \
	kproplog \
	krb5-config \
	slave

all :		TARGET= all
clean :	TARGET= clean
clobber :	TARGET= clobber
delete :	TARGET= delete
install :	TARGET= install
catalog :	TARGET= catalog
package :	TARGET= package
_msg :		TARGET= _msg

.KEEP_STATE:

all clean clobber delete install catalog package: $(SUBDIRS)

_msg:	$(SUBDIRS)

check: $(CHECKHDRS)

$(filter-out .WAIT,$(SUBDIRS)):	FRC
	@cd $@; pwd; $(MAKE) $(TARGET)

FRC: