xref: /titanic_44/usr/src/cmd/devfsadm/Makefile (revision 24fe0b3bf671e123467ce1df0b67cadd3614c8e4)
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
58d483882Smlf# Common Development and Distribution License (the "License").
68d483882Smlf# You may not use this file except in compliance with the License.
77c478bd9Sstevel@tonic-gate#
87c478bd9Sstevel@tonic-gate# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
97c478bd9Sstevel@tonic-gate# or http://www.opensolaris.org/os/licensing.
107c478bd9Sstevel@tonic-gate# See the License for the specific language governing permissions
117c478bd9Sstevel@tonic-gate# and limitations under the License.
127c478bd9Sstevel@tonic-gate#
137c478bd9Sstevel@tonic-gate# When distributing Covered Code, include this CDDL HEADER in each
147c478bd9Sstevel@tonic-gate# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
157c478bd9Sstevel@tonic-gate# If applicable, add the following below this CDDL HEADER, with the
167c478bd9Sstevel@tonic-gate# fields enclosed by brackets "[]" replaced with your own identifying
177c478bd9Sstevel@tonic-gate# information: Portions Copyright [yyyy] [name of copyright owner]
187c478bd9Sstevel@tonic-gate#
197c478bd9Sstevel@tonic-gate# CDDL HEADER END
207c478bd9Sstevel@tonic-gate#
21*24fe0b3bSjmcp# Copyright 2009 Sun Microsystems, Inc.  All rights reserved.
22a7872406Smeem# Use is subject to license terms.
237c478bd9Sstevel@tonic-gate#
247c478bd9Sstevel@tonic-gate# cmd/devfsadm/Makefile
257c478bd9Sstevel@tonic-gate#
267c478bd9Sstevel@tonic-gate
27a7872406SmeemDEFAULTFILES = devfsadm.dfl
28a7872406Smeem
298d483882SmlfETCDEVFILES=reserved_devnames
308d483882Smlf
31a7872406Smeeminclude ../Makefile.cmd
32a7872406Smeem
337c478bd9Sstevel@tonic-gate#
347c478bd9Sstevel@tonic-gate# One for each ISA.
357c478bd9Sstevel@tonic-gate#
367c478bd9Sstevel@tonic-gateSUBDIRS =	$(MACH)
377c478bd9Sstevel@tonic-gate
387c478bd9Sstevel@tonic-gateall	:=	TARGET= all
397c478bd9Sstevel@tonic-gateinstall	:=	TARGET= install
407c478bd9Sstevel@tonic-gateclean	:=	TARGET= clean
417c478bd9Sstevel@tonic-gateclobber	:=	TARGET= clobber
427c478bd9Sstevel@tonic-gate_msg	:=	TARGET= _msg
437c478bd9Sstevel@tonic-gatelint	:=	TARGET= lint
447c478bd9Sstevel@tonic-gate
458d483882SmlfROOTETCDEV=	$(ROOTETC)/dev
468d483882SmlfROOTETCDEVFILES=$(ETCDEVFILES:%=$(ROOTETCDEV)/%)
478d483882Smlf$(ROOTETCDEV) :=	DIRMODE=	755
488d483882Smlf$(ROOTETCDEVFILES) :=	FILEMODE = 0644
498d483882Smlf
507c478bd9Sstevel@tonic-gate.KEEP_STATE:
517c478bd9Sstevel@tonic-gate
528d483882Smlfall:	$(SUBDIRS) $(ETCDEVFILES)
53a7872406Smeem
548d483882Smlfclean lint _msg:	$(SUBDIRS)
558d483882Smlf
568d483882Smlfclobber: $(SUBDIRS)
578d483882Smlf	$(RM) $(ROOTETCDEVFILES)
588d483882Smlf
598d483882Smlfinstall: $(SUBDIRS) $(ROOTETCDEFAULTFILES) $(ROOTETCDEVFILES)
608d483882Smlf
618d483882Smlf$(ROOTETCDEV):
628d483882Smlf	$(INS.dir)
638d483882Smlf
648d483882Smlf$(ROOTETCDEV)/% : % $(ROOTETCDEV)
658d483882Smlf	$(INS.file)
667c478bd9Sstevel@tonic-gate
677c478bd9Sstevel@tonic-gate$(SUBDIRS):	FRC
687c478bd9Sstevel@tonic-gate	@cd $@; pwd; $(MAKE) $(TARGET)
697c478bd9Sstevel@tonic-gate
707c478bd9Sstevel@tonic-gateFRC:
71