remove legacy accounting support
[unleashed.git] / usr / src / cmd / Adm / Makefile
blobf5ee0fa5e297080f70a1617b5113a7106279bed3
2 # CDDL HEADER START
4 # The contents of this file are subject to the terms of the
5 # Common Development and Distribution License (the "License").
6 # You may not use this file except in compliance with the License.
8 # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 # or http://www.opensolaris.org/os/licensing.
10 # See the License for the specific language governing permissions
11 # and limitations under the License.
13 # When distributing Covered Code, include this CDDL HEADER in each
14 # file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 # If applicable, add the following below this CDDL HEADER, with the
16 # fields enclosed by brackets "[]" replaced with your own identifying
17 # information: Portions Copyright [yyyy] [name of copyright owner]
19 # CDDL HEADER END
22 # Copyright 2010 Sun Microsystems, Inc. All rights reserved.
23 # Use is subject to license terms.
26 CRON_ENT= adm root
27 CRON_LIB= .proto at.deny cron.deny queuedefs
28 ETC_SCRIPT= group project ttysrch mailcap mime.types
29 ZI_SPECIAL= zones-index
30 SUBDIRS= sun
32 include ../Makefile.cmd
34 all:= TARGET= all
35 install:= TARGET= install
36 clean:= TARGET= clean
37 clobber:= TARGET= clobber
39 CROND= $(ROOT)/var/spool/cron
40 CRONTABD= $(ROOT)/var/spool/cron/crontabs
41 CRONLIBD= $(ROOT)/etc/cron.d
42 ETCZONESD= $(ROOT)/etc/zones
43 DIRS= $(CROND) $(CRONTABD) $(CRONLIBD)
45 CRONTABS= $(CRON_ENT:%=$(CRONTABD)/%)
46 CRONLIBS= $(CRON_LIB:%=$(CRONLIBD)/%)
47 ETCSCRIPTS= $(ETC_SCRIPT:%=$(ROOTETC)/%)
48 ZISPECIALS= $(ETCZONESD)/index
50 FILEMODE= 0644
52 $(CRONLIBD)/.proto := FILEMODE = 0744
53 $(CRONTABD)/adm := FILEMODE = 0600
54 $(CRONTABD)/root := FILEMODE = 0600
56 .KEEP_STATE:
58 all: $(CRON_ENT) $(CRON_LIB) $(ETC_SCRIPT) $(SUBDIRS)
60 install: all $(DIRS) $(CRONTABS) $(CRONLIBS) $(ETCSCRIPTS) $(ETCZONESD) \
61 $(SUBDIRS)
63 $(CRONTABD)/% : %
64 $(INS.file)
66 $(CRONLIBD)/% : %
67 $(INS.file)
69 $(ETCZONESD): $(ZI_SPECIAL)
70 $(CP) -f $(ZI_SPECIAL) $(ZISPECIALS)
71 $(CHMOD) $(FILEMODE) $(ZISPECIALS)
73 $(SUBDIRS): FRC
74 @cd $@; pwd; $(MAKE) $(MFLAGS) $(TARGET)
76 $(DIRS):
77 $(INS.dir)
79 FRC:
81 clean clobber: $(SUBDIRS)