|
root / base / usr / src / lib / krb5 / Makefile
Makefile Makefile 37 lines 559 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
#
# Copyright 2007 Sun Microsystems, Inc.  All rights reserved.
# Use is subject to license terms.
#

# include global definitions
include ../../Makefile.master

#
# Build everything in parallel; use .WAIT for dependencies
.PARALLEL:

SUBDIRS= \
	dyn	\
	.WAIT	\
	kdb	\
	.WAIT	\
	kadm5	\
	.WAIT	\
	ss	\
	plugins

all :		TARGET= all
install :	TARGET= install
clean :	TARGET= clean
clobber :	TARGET= clobber
_msg :		TARGET= _msg

.KEEP_STATE:

all install clean clobber _msg: $(SUBDIRS)

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

FRC: