Cross Reference: /illumos-gate/usr/src/cmd/krb5/kadmin/Makefile
Makefile revision 7c478bd95313f5f23a4c958a745db2134aa03244
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
44
45
46
47
48
49
50
51
52
#
# Copyright 1997-2003 Sun Microsystems, Inc. All rights reserved.
# Use is subject to license terms.
#
# ident "%Z%%M% %I% %E% SMI"
#
# cmd/krb5/kadmin/Makefile
include ../../Makefile.cmd
SUBDIRS= cli dbutil ktutil kpasswd server kclient
# EXPORT DELETE START
SUBDIRS += gui
# EXPORT DELETE END
all := TARGET= all
clean := TARGET= clean
clobber := TARGET= clobber
delete := TARGET= delete
install := TARGET= install
lint := TARGET= lint
catalog := TARGET= catalog
package := TARGET= package
_msg:= TARGET= _msg
_msg: $(SUBDIRS)
.KEEP_STATE:
all clean clobber delete install lint catalog package: $(SUBDIRS)
# install rule for install_h target
install: $(SUBDIRS)
check: $(CHECKHDRS)
$(SUBDIRS): FRC
@cd $@; pwd; $(MAKE) $(TARGET)
FRC:
# EXPORT DELETE START
EXPORT_SRC:
$(RM) -r gui
$(RM) Makefile+
$(SED) -e "/^# EXPORT DELETE START/,/^# EXPORT DELETE END/d" \
< Makefile > Makefile+
$(MV) Makefile+ Makefile
$(CHMOD) 444 Makefile
# EXPORT DELETE END