Print this page
10080 smatch Makefile changes for usr/src/cmd
Split |
Close |
Expand all |
Collapse all |
--- old/usr/src/cmd/krb5/kproplog/Makefile
+++ new/usr/src/cmd/krb5/kproplog/Makefile
1 1 #
2 2 # Copyright 2004 Sun Microsystems, Inc. All rights reserved.
3 3 # Use is subject to license terms.
4 4 #
5 +# Copyright (c) 2018, Joyent, Inc.
5 6
6 7 PROG = kproplog
7 8
8 9 OBJS = kproplog.o
9 10 DERIVED_OBJS = iprop_xdr.o
10 11
11 12 SRCS= $(OBJS:.o=.c)
12 13 SRCS+= $(DERIVED_OBJS:.o=.c)
13 14
14 15 RSRC= kproplog.c
15 16
16 17 # Definitions needed to rpcgen iprop-related files
17 18 ISRC= iprop.h iprop_xdr.c
18 19 KRB5IPROPDIR= $(SRC)/cmd/krb5/iprop
19 20 CMD= grep -v "usr/src/cmd/krb5/iprop" > $@
20 21
21 22 include ../../Makefile.cmd
22 23 include $(SRC)/lib/gss_mechs/mech_krb5/Makefile.mech_krb5
23 24
24 25 TEXT_DOMAIN = SUNW_OST_OSCMD
25 26 POFILE = kproplog.po
26 27 POFILES = generic.po
27 28
28 29 LDFLAGS += -R$(KRB5RUNPATH) $(KRUNPATH)
29 30 LDLIBS += -L$(KRB5LIB) $(KLIB) -lnsl -lkdb -lkadm5clnt
↓ open down ↓ |
15 lines elided |
↑ open up ↑ |
30 31
31 32 CPPFLAGS += -I. -I$(SRC)/lib/krb5 \
32 33 -I$(KRB5IPROPDIR) \
33 34 -I$(SRC)/lib/gss_mechs/mech_krb5/include \
34 35 -I$(SRC)/uts/common/gssapi/mechs/krb5/include
35 36
36 37 CERRWARN += -_gcc=-Wno-unused-variable
37 38 CERRWARN += -_gcc=-Wno-unused-function
38 39 CERRWARN += -_gcc=-Wno-implicit-function-declaration
39 40
41 +# not linted
42 +SMATCH=off
43 +
40 44 all: $(PROG)
41 45
42 46 $(PROG): $(OBJS) $(DERIVED_OBJS)
43 47 $(LINK.c) $(OBJS) $(DERIVED_OBJS) -o $@ $(LDLIBS)
44 48 $(POST_PROCESS)
45 49
46 50 # Rules to rpcgen-erate derived files from the iprop.x spec file
47 51 iprop.h: $(KRB5IPROPDIR)/iprop.x
48 52 $(RM) $@
49 53 $(RPCGEN) -h $(KRB5IPROPDIR)/iprop.x > $@
50 54
51 55 iprop_xdr.c: iprop.h $(KRB5IPROPDIR)/iprop.x
52 56 $(RM) $@
53 57 $(RPCGEN) -c $(KRB5IPROPDIR)/iprop.x | $(CMD)
54 58
55 59 # Explicitly state the dependancy on iprop.h
56 60 $(OBJS): iprop.h
57 61
58 62 install: $(KRB5SBINPROG)
59 63
60 64 lint: $(ISRC) .WAIT lint_SRCS
61 65
62 66 clean:
63 67 $(RM) $(OBJS) $(DERIVED_OBJS) $(ISRC)
64 68
65 69 include ../../Makefile.targ
66 70
67 71 $(POFILE): $(DERIVED_FILES) .WAIT $(POFILES)
68 72 $(RM) $@
69 73 $(CAT) $(POFILES) > $@
70 74
71 75 generic.po:
72 76 $(RM) messages.po
73 77 $(XGETTEXT) $(XGETFLAGS) `$(GREP) -l gettext *.[ch]`
74 78 $(SED) "/^domain/d" messages.po > $@
75 79 $(RM) messages.po
↓ open down ↓ |
26 lines elided |
↑ open up ↑ |
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX