xref: /illumos-gate/usr/src/cmd/krb5/kinit/Makefile (revision ff67a31b)
1#
2# Copyright 2008 Sun Microsystems, Inc.  All rights reserved.
3# Use is subject to license terms.
4#
5# Copyright (c) 2018, Joyent, Inc.
6
7PROG= kinit
8
9OBJS	= kinit.o
10SRCS	= kinit.c
11
12DEFS =  -DHAVE_LIBSOCKET=1 -DHAVE_LIBNSL=1 -DHAVE_PWD_H=1 -DHAVE_COMPILE=1 -DHAVE_STEP=1
13
14include ../../Makefile.cmd
15include $(SRC)/lib/gss_mechs/mech_krb5/Makefile.mech_krb5
16
17CERRWARN += -_gcc=-Wno-implicit-function-declaration
18CERRWARN += -_gcc=-Wno-unused-function
19CERRWARN += -_gcc=-Wno-parentheses
20
21# not linted
22SMATCH=off
23
24POFILE = kinit.po
25POFILES = generic.po
26
27DEFS = -DHAVE_PWD_H
28
29CPPFLAGS += -I../../lib/gss_mechs/mech_krb5/include \
30		-I$(SRC)/lib/gss_mechs/mech_krb5 \
31		-I$(SRC)/lib/gss_mechs/mech_krb5/include \
32		-I$(SRC)/uts/common/gssapi/mechs/krb5/include \
33		$(DEFS)
34
35LDFLAGS += $(KRUNPATH)
36LDLIBS += $(KMECHLIB)
37
38.KEEP_STATE:
39
40all: $(PROG)
41
42$(PROG):       $(OBJS)
43	$(LINK.c) $(OBJS) -o $@ $(LDLIBS)
44	$(POST_PROCESS)
45
46install: $(KRB5PROG)
47
48clean:
49	$(RM) $(OBJS)
50
51include ../../Makefile.targ
52
53$(POFILE): $(DERIVED_FILES) .WAIT $(POFILES)
54	$(RM) $@
55	$(CAT) $(POFILES) > $@
56
57generic.po:
58	$(RM) messages.po
59	$(XGETTEXT) $(XGETFLAGS) `($(GREP) -l gettext *.[ch] || echo /dev/null)`
60	$(SED) "/^domain/d" messages.po > $@
61	$(RM) messages.po
62