17c478bd9Sstevel@tonic-gate# 27c478bd9Sstevel@tonic-gate# Copyright 2004 Sun Microsystems, Inc. All rights reserved. 37c478bd9Sstevel@tonic-gate# Use is subject to license terms. 47c478bd9Sstevel@tonic-gate# 57c478bd9Sstevel@tonic-gate 67c478bd9Sstevel@tonic-gatePROG = kproplog 77c478bd9Sstevel@tonic-gate 87c478bd9Sstevel@tonic-gateOBJS = kproplog.o 97c478bd9Sstevel@tonic-gateDERIVED_OBJS = iprop_xdr.o 107c478bd9Sstevel@tonic-gate 117c478bd9Sstevel@tonic-gateSRCS= $(OBJS:.o=.c) 127c478bd9Sstevel@tonic-gateSRCS+= $(DERIVED_OBJS:.o=.c) 137c478bd9Sstevel@tonic-gate 147c478bd9Sstevel@tonic-gateRSRC= kproplog.c 157c478bd9Sstevel@tonic-gate 167c478bd9Sstevel@tonic-gate# Definitions needed to rpcgen iprop-related files 177c478bd9Sstevel@tonic-gateISRC= iprop.h iprop_xdr.c 187c478bd9Sstevel@tonic-gateKRB5IPROPDIR= $(SRC)/cmd/krb5/iprop 197c478bd9Sstevel@tonic-gateCMD= grep -v "usr/src/cmd/krb5/iprop" > $@ 207c478bd9Sstevel@tonic-gate 217c478bd9Sstevel@tonic-gateinclude ../../Makefile.cmd 227c478bd9Sstevel@tonic-gateinclude $(SRC)/lib/gss_mechs/mech_krb5/Makefile.mech_krb5 237c478bd9Sstevel@tonic-gate 247c478bd9Sstevel@tonic-gateTEXT_DOMAIN = SUNW_OST_OSCMD 257c478bd9Sstevel@tonic-gatePOFILE = kproplog.po 267c478bd9Sstevel@tonic-gatePOFILES = generic.po 277c478bd9Sstevel@tonic-gate 287c478bd9Sstevel@tonic-gateLDFLAGS += -R$(KRB5RUNPATH) $(KRUNPATH) 297c478bd9Sstevel@tonic-gateLDLIBS += -L$(KRB5LIB) $(KLIB) -lnsl -lkdb -lkadm5clnt 307c478bd9Sstevel@tonic-gate 317c478bd9Sstevel@tonic-gateCPPFLAGS += -I. -I$(SRC)/lib/krb5 \ 327c478bd9Sstevel@tonic-gate -I$(KRB5IPROPDIR) \ 337c478bd9Sstevel@tonic-gate -I$(SRC)/lib/gss_mechs/mech_krb5/include \ 347c478bd9Sstevel@tonic-gate -I$(SRC)/uts/common/gssapi/mechs/krb5/include 357c478bd9Sstevel@tonic-gate 36*7014882cSRichard LoweCERRWARN += -_gcc=-Wno-unused-variable 37*7014882cSRichard LoweCERRWARN += -_gcc=-Wno-unused-function 38*7014882cSRichard LoweCERRWARN += -_gcc=-Wno-implicit-function-declaration 39*7014882cSRichard Lowe 407c478bd9Sstevel@tonic-gateall: $(PROG) 417c478bd9Sstevel@tonic-gate 427c478bd9Sstevel@tonic-gate$(PROG): $(OBJS) $(DERIVED_OBJS) 437c478bd9Sstevel@tonic-gate $(LINK.c) $(OBJS) $(DERIVED_OBJS) -o $@ $(LDLIBS) 447c478bd9Sstevel@tonic-gate $(POST_PROCESS) 457c478bd9Sstevel@tonic-gate 467c478bd9Sstevel@tonic-gate# Rules to rpcgen-erate derived files from the iprop.x spec file 477c478bd9Sstevel@tonic-gateiprop.h: $(KRB5IPROPDIR)/iprop.x 487c478bd9Sstevel@tonic-gate $(RM) $@ 497c478bd9Sstevel@tonic-gate $(RPCGEN) -h $(KRB5IPROPDIR)/iprop.x > $@ 507c478bd9Sstevel@tonic-gate 517c478bd9Sstevel@tonic-gateiprop_xdr.c: iprop.h $(KRB5IPROPDIR)/iprop.x 527c478bd9Sstevel@tonic-gate $(RM) $@ 537c478bd9Sstevel@tonic-gate $(RPCGEN) -c $(KRB5IPROPDIR)/iprop.x | $(CMD) 547c478bd9Sstevel@tonic-gate 557c478bd9Sstevel@tonic-gate# Explicitly state the dependancy on iprop.h 567c478bd9Sstevel@tonic-gate$(OBJS): iprop.h 577c478bd9Sstevel@tonic-gate 587c478bd9Sstevel@tonic-gateinstall: $(KRB5SBINPROG) 597c478bd9Sstevel@tonic-gate 607c478bd9Sstevel@tonic-gatelint: $(ISRC) .WAIT lint_SRCS 617c478bd9Sstevel@tonic-gate 627c478bd9Sstevel@tonic-gateclean: 637c478bd9Sstevel@tonic-gate $(RM) $(OBJS) $(DERIVED_OBJS) $(ISRC) 647c478bd9Sstevel@tonic-gate 657c478bd9Sstevel@tonic-gateinclude ../../Makefile.targ 667c478bd9Sstevel@tonic-gate 677c478bd9Sstevel@tonic-gate$(POFILE): $(DERIVED_FILES) .WAIT $(POFILES) 687c478bd9Sstevel@tonic-gate $(RM) $@ 697c478bd9Sstevel@tonic-gate $(CAT) $(POFILES) > $@ 707c478bd9Sstevel@tonic-gate 717c478bd9Sstevel@tonic-gategeneric.po: 727c478bd9Sstevel@tonic-gate $(RM) messages.po 737c478bd9Sstevel@tonic-gate $(XGETTEXT) $(XGETFLAGS) `$(GREP) -l gettext *.[ch]` 747c478bd9Sstevel@tonic-gate $(SED) "/^domain/d" messages.po > $@ 757c478bd9Sstevel@tonic-gate $(RM) messages.po 76