xref: /illumos-gate/usr/src/cmd/valtools/Makefile (revision 55fea89d)
17c478bd9Sstevel@tonic-gate#
27c478bd9Sstevel@tonic-gate# CDDL HEADER START
37c478bd9Sstevel@tonic-gate#
47c478bd9Sstevel@tonic-gate# The contents of this file are subject to the terms of the
57c478bd9Sstevel@tonic-gate# Common Development and Distribution License, Version 1.0 only
67c478bd9Sstevel@tonic-gate# (the "License").  You may not use this file except in compliance
77c478bd9Sstevel@tonic-gate# with the License.
87c478bd9Sstevel@tonic-gate#
97c478bd9Sstevel@tonic-gate# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
107c478bd9Sstevel@tonic-gate# or http://www.opensolaris.org/os/licensing.
117c478bd9Sstevel@tonic-gate# See the License for the specific language governing permissions
127c478bd9Sstevel@tonic-gate# and limitations under the License.
137c478bd9Sstevel@tonic-gate#
147c478bd9Sstevel@tonic-gate# When distributing Covered Code, include this CDDL HEADER in each
157c478bd9Sstevel@tonic-gate# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
167c478bd9Sstevel@tonic-gate# If applicable, add the following below this CDDL HEADER, with the
177c478bd9Sstevel@tonic-gate# fields enclosed by brackets "[]" replaced with your own identifying
187c478bd9Sstevel@tonic-gate# information: Portions Copyright [yyyy] [name of copyright owner]
197c478bd9Sstevel@tonic-gate#
207c478bd9Sstevel@tonic-gate# CDDL HEADER END
217c478bd9Sstevel@tonic-gate#
227c478bd9Sstevel@tonic-gate#
237c478bd9Sstevel@tonic-gate#ident	"%Z%%M%	%I%	%E% SMI"
247c478bd9Sstevel@tonic-gate#
257c478bd9Sstevel@tonic-gate# Copyright 2004 Sun Microsystems, Inc.  All rights reserved.
267c478bd9Sstevel@tonic-gate# Use is subject to license terms.
277c478bd9Sstevel@tonic-gate#
287c478bd9Sstevel@tonic-gate# cmd/valtools/Makefile
297c478bd9Sstevel@tonic-gate#
307c478bd9Sstevel@tonic-gate
317c478bd9Sstevel@tonic-gatePROG= ckint ckitem ckpath ckrange ckstr ckyorn \
327c478bd9Sstevel@tonic-gate      ckkeywd ckdate cktime ckuid ckgid
337c478bd9Sstevel@tonic-gate
347c478bd9Sstevel@tonic-gatePOFILES= ckdate.po ckgid.po ckint.po ckitem.po \
357c478bd9Sstevel@tonic-gate	ckkeywd.po ckpath.po ckrange.po ckstr.po \
367c478bd9Sstevel@tonic-gate	cktime.po ckuid.po ckyorn.po puttext.po
377c478bd9Sstevel@tonic-gate
387c478bd9Sstevel@tonic-gateinclude ../Makefile.cmd
397c478bd9Sstevel@tonic-gate
407c478bd9Sstevel@tonic-gateLIBADMDIR=	../../lib/libadm/inc
417c478bd9Sstevel@tonic-gateCPPFLAGS +=	-I$(LIBADMDIR)
427c478bd9Sstevel@tonic-gateCFLAGS +=	$(CCVERBOSE)
437c478bd9Sstevel@tonic-gateLDLIBS += -ladm
447c478bd9Sstevel@tonic-gatePOFILE= valtools.po
457c478bd9Sstevel@tonic-gateCLOBBERFILES +=	puttext $(POFILES) $(POFILE)
467c478bd9Sstevel@tonic-gateCLEANFILES += puttext
477c478bd9Sstevel@tonic-gate
487c478bd9Sstevel@tonic-gateVCKS=	valint helpint errint  \
497c478bd9Sstevel@tonic-gate	helpitem erritem  \
507c478bd9Sstevel@tonic-gate        valpath helppath errpath  \
517c478bd9Sstevel@tonic-gate	valrange helprange errange  \
527c478bd9Sstevel@tonic-gate	valstr helpstr errstr  \
537c478bd9Sstevel@tonic-gate	valyorn helpyorn erryorn  \
547c478bd9Sstevel@tonic-gate	valtime helptime errtime  \
557c478bd9Sstevel@tonic-gate	valdate helpdate errdate  \
567c478bd9Sstevel@tonic-gate	dispuid valuid helpuid erruid  \
577c478bd9Sstevel@tonic-gate	dispgid valgid helpgid errgid
587c478bd9Sstevel@tonic-gate
597c478bd9Sstevel@tonic-gateDISPS=	dispuid dispgid
607c478bd9Sstevel@tonic-gate
617c478bd9Sstevel@tonic-gateROOTSADMDIR=	$(ROOT)/usr/sadm/bin
627c478bd9Sstevel@tonic-gate
637c478bd9Sstevel@tonic-gateROOTPUTTEXT=	$(ROOTSADMDIR)/puttext
647c478bd9Sstevel@tonic-gateROOTVCKS=	$(VCKS:%=$(ROOTSADMDIR)/%)
657c478bd9Sstevel@tonic-gateROOTDISPS=	$(DISPS:%=$(ROOTBIN)/%)
667c478bd9Sstevel@tonic-gate
677c478bd9Sstevel@tonic-gate
687c478bd9Sstevel@tonic-gate# valtool install rules
697c478bd9Sstevel@tonic-gate$(ROOTSADMDIR)/%: %
707c478bd9Sstevel@tonic-gate	$(INS.file)
717c478bd9Sstevel@tonic-gate
727c478bd9Sstevel@tonic-gate# there is a special case here for errange
737c478bd9Sstevel@tonic-gate#
747c478bd9Sstevel@tonic-gate$(ROOTSADMDIR)/disp% \
757c478bd9Sstevel@tonic-gate$(ROOTSADMDIR)/val% \
767c478bd9Sstevel@tonic-gate$(ROOTSADMDIR)/help% \
777c478bd9Sstevel@tonic-gate$(ROOTSADMDIR)/err% \
787c478bd9Sstevel@tonic-gate$(ROOTSADMDIR)/er% \
797c478bd9Sstevel@tonic-gate$(ROOTBIN)/disp%: $(ROOTBIN)/ck%
807c478bd9Sstevel@tonic-gate	$(RM) $@; $(LN) $< $@
817c478bd9Sstevel@tonic-gate
82*55fea89dSDan Cross
837c478bd9Sstevel@tonic-gate.KEEP_STATE:
847c478bd9Sstevel@tonic-gate
857c478bd9Sstevel@tonic-gate.PARALLEL:	 $(PROG) puttext
867c478bd9Sstevel@tonic-gate
87*55fea89dSDan Crossall: $(PROG) puttext
88*55fea89dSDan Cross
897c478bd9Sstevel@tonic-gateinstall: all $(ROOTSADMDIR) $(ROOTPROG) $(ROOTPUTTEXT) $(ROOTVCKS) $(ROOTDISPS)
90*55fea89dSDan Cross
917c478bd9Sstevel@tonic-gate$(ROOTSADMDIR):
927c478bd9Sstevel@tonic-gate	$(INS.dir)
937c478bd9Sstevel@tonic-gate
947c478bd9Sstevel@tonic-gate$(POFILE):	$(POFILES)
957c478bd9Sstevel@tonic-gate	$(RM) $@
967c478bd9Sstevel@tonic-gate	cat $(POFILES) > $@
977c478bd9Sstevel@tonic-gate
987c478bd9Sstevel@tonic-gateclean:
997c478bd9Sstevel@tonic-gate
1007c478bd9Sstevel@tonic-gatelint:
1017c478bd9Sstevel@tonic-gate	$(LINT.c) ckint.c   $(LDLIBS)
1027c478bd9Sstevel@tonic-gate	$(LINT.c) ckitem.c  $(LDLIBS)
1037c478bd9Sstevel@tonic-gate	$(LINT.c) ckpath.c  $(LDLIBS)
1047c478bd9Sstevel@tonic-gate	$(LINT.c) ckrange.c $(LDLIBS)
1057c478bd9Sstevel@tonic-gate	$(LINT.c) ckstr.c   $(LDLIBS)
1067c478bd9Sstevel@tonic-gate	$(LINT.c) ckyorn.c  $(LDLIBS)
1077c478bd9Sstevel@tonic-gate	$(LINT.c) ckkeywd.c $(LDLIBS)
1087c478bd9Sstevel@tonic-gate	$(LINT.c) ckdate.c  $(LDLIBS)
1097c478bd9Sstevel@tonic-gate	$(LINT.c) cktime.c  $(LDLIBS)
1107c478bd9Sstevel@tonic-gate	$(LINT.c) ckuid.c   $(LDLIBS)
1117c478bd9Sstevel@tonic-gate	$(LINT.c) ckgid.c   $(LDLIBS)
1127c478bd9Sstevel@tonic-gate	$(LINT.c) puttext.c $(LDLIBS)
113*55fea89dSDan Cross
1147c478bd9Sstevel@tonic-gateinclude ../Makefile.targ
115