stevel@tonic-gate | 7c478bd | 2005-06-14 00:00:00 -0700 | [diff] [blame] | 1 | # |
| 2 | # CDDL HEADER START |
| 3 | # |
| 4 | # The contents of this file are subject to the terms of the |
Casper H.S. Dik | f5c9e9f | 2009-02-14 08:36:49 +0100 | [diff] [blame] | 5 | # Common Development and Distribution License (the "License"). |
| 6 | # You may not use this file except in compliance with the License. |
stevel@tonic-gate | 7c478bd | 2005-06-14 00:00:00 -0700 | [diff] [blame] | 7 | # |
| 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. |
| 12 | # |
| 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] |
| 18 | # |
| 19 | # CDDL HEADER END |
| 20 | # |
Liane Praza | ead1f93 | 2010-03-02 19:29:26 -0700 | [diff] [blame] | 21 | |
| 22 | # |
| 23 | # Copyright 2010 Sun Microsystems, Inc. All rights reserved. |
stevel@tonic-gate | 7c478bd | 2005-06-14 00:00:00 -0700 | [diff] [blame] | 24 | # Use is subject to license terms. |
| 25 | # |
Liane Praza | ead1f93 | 2010-03-02 19:29:26 -0700 | [diff] [blame] | 26 | |
stevel@tonic-gate | 7c478bd | 2005-06-14 00:00:00 -0700 | [diff] [blame] | 27 | # ucbcmd/Makefile |
stevel@tonic-gate | 7c478bd | 2005-06-14 00:00:00 -0700 | [diff] [blame] | 28 | |
| 29 | # include global definitions; SRC should be defined in the shell. |
| 30 | # SRC is needed until RFE 1026993 is implemented. |
| 31 | include $(SRC)/Makefile.master |
| 32 | include $(SRC)/ucbcmd/Makefile.ucbcmd |
| 33 | |
| 34 | COMMON_SUBDIRS= \ |
| 35 | basename \ |
| 36 | biff \ |
stevel@tonic-gate | 7c478bd | 2005-06-14 00:00:00 -0700 | [diff] [blame] | 37 | chown \ |
| 38 | df \ |
| 39 | du \ |
| 40 | echo \ |
| 41 | expr \ |
| 42 | fastboot \ |
| 43 | fasthalt \ |
| 44 | file \ |
| 45 | from \ |
| 46 | groups \ |
| 47 | install.d \ |
stevel@tonic-gate | 7c478bd | 2005-06-14 00:00:00 -0700 | [diff] [blame] | 48 | ln \ |
| 49 | ls \ |
| 50 | mkstr \ |
stevel@tonic-gate | 7c478bd | 2005-06-14 00:00:00 -0700 | [diff] [blame] | 51 | printenv \ |
stevel@tonic-gate | 7c478bd | 2005-06-14 00:00:00 -0700 | [diff] [blame] | 52 | rusage \ |
| 53 | sed \ |
| 54 | shutdown \ |
| 55 | stty \ |
| 56 | sum \ |
| 57 | test \ |
| 58 | touch \ |
| 59 | tr \ |
| 60 | tset \ |
stevel@tonic-gate | 7c478bd | 2005-06-14 00:00:00 -0700 | [diff] [blame] | 61 | users \ |
| 62 | vipw \ |
| 63 | whereis \ |
| 64 | whoami |
| 65 | |
| 66 | sparc_SUBDIRS= sbcp |
| 67 | |
| 68 | SUBDIRS= $(COMMON_SUBDIRS) $($(MACH)_SUBDIRS) |
| 69 | |
| 70 | # commands messaged |
Jerry Gilliam | 2449217 | 2009-07-13 19:06:47 -0700 | [diff] [blame] | 71 | MSGSUBDIRS = biff install.d mkstr rusage shutdown |
stevel@tonic-gate | 7c478bd | 2005-06-14 00:00:00 -0700 | [diff] [blame] | 72 | |
| 73 | BWOSDIRS= |
| 74 | |
| 75 | all:= TARGET= all |
| 76 | install:= TARGET= install |
| 77 | clean:= TARGET= clean |
| 78 | clobber:= TARGET= clobber |
| 79 | lint:= TARGET= lint |
| 80 | _msg:= TARGET= _msg |
| 81 | |
| 82 | # Since pre-5.0 system users were told to put /usr/5bin in their path to |
| 83 | # get the 5.0 system behavior, we need this link so that the PATH of |
| 84 | # /usr/5bin:/usr/ucb:/usr/bin does the right thing. (let's see, without |
| 85 | # this link, 5.0 behaves like UCB and 4.1 behaves like SysV... I'm so |
| 86 | # confused...) |
| 87 | ROOTUSR = $(ROOT)/usr |
| 88 | S5LINK = $(ROOTUSR)/5bin |
| 89 | DICTLINK = $(ROOTUSR)/dict |
| 90 | |
| 91 | # Symbolic links for source compatibility. Many utilities that |
| 92 | # were under /usr/ucb in SunOS 4.1, are now in the base; the |
| 93 | # symbolic links are provided for compatibility. |
| 94 | LINKDEST= ../bin/$(@F) |
| 95 | |
| 96 | BINLINKS= \ |
| 97 | arch \ |
| 98 | clear \ |
| 99 | e \ |
| 100 | edit \ |
| 101 | ex \ |
| 102 | vedit \ |
| 103 | vi \ |
| 104 | view \ |
| 105 | finger \ |
| 106 | fmt \ |
| 107 | fold \ |
| 108 | ftp \ |
| 109 | head \ |
| 110 | hostid \ |
| 111 | hostname \ |
| 112 | logger \ |
| 113 | mach \ |
| 114 | more \ |
| 115 | page \ |
| 116 | pagesize \ |
| 117 | netstat \ |
| 118 | quota \ |
| 119 | rcp \ |
| 120 | rdate \ |
| 121 | renice \ |
| 122 | rlogin \ |
| 123 | rsh \ |
| 124 | ruptime \ |
| 125 | rwho \ |
| 126 | script \ |
| 127 | tail \ |
| 128 | talk \ |
| 129 | tcopy \ |
| 130 | telnet \ |
| 131 | tftp \ |
| 132 | uptime \ |
| 133 | vacation \ |
| 134 | vmstat \ |
| 135 | w \ |
| 136 | wc \ |
| 137 | whois \ |
| 138 | xstr |
| 139 | |
| 140 | ROOTBINLINKS = $(BINLINKS:%=$(ROOTBIN)/%) |
| 141 | |
| 142 | OTHERLINKS = $(ROOTETC)/termcap \ |
| 143 | $(ROOTSHLIB)/zoneinfo/posixrules |
| 144 | |
| 145 | $(S5LINK) := LINKDEST= bin |
| 146 | $(DICTLINK) := LINKDEST= share/lib/dict |
Liane Praza | ead1f93 | 2010-03-02 19:29:26 -0700 | [diff] [blame] | 147 | $(ROOTBIN)/e := LINKDEST= ../bin/edit |
| 148 | $(ROOTBIN)/ex := LINKDEST= ../bin/edit |
stevel@tonic-gate | 7c478bd | 2005-06-14 00:00:00 -0700 | [diff] [blame] | 149 | $(ROOTBIN)/page := LINKDEST= ../bin/more |
| 150 | $(ROOTBIN)/quota := LINKDEST= ../lib/fs/ufs/quota |
| 151 | $(ROOTETC)/termcap := LINKDEST= ../usr/share/lib/termcap |
Liane Praza | ead1f93 | 2010-03-02 19:29:26 -0700 | [diff] [blame] | 152 | $(ROOTBIN)/vi := LINKDEST= ../bin/edit |
| 153 | $(ROOTBIN)/view := LINKDEST= ../bin/edit |
stevel@tonic-gate | 7c478bd | 2005-06-14 00:00:00 -0700 | [diff] [blame] | 154 | $(ROOTSHLIB)/zoneinfo/posixrules := LINKDEST= US/Eastern |
| 155 | |
| 156 | .KEEP_STATE: |
| 157 | |
| 158 | .PARALLEL: $(SUBDIRS) |
| 159 | |
| 160 | all clean clobber: $(SUBDIRS) |
| 161 | |
| 162 | install: $(SUBDIRS) .WAIT rootlinks |
| 163 | |
| 164 | # For messaging catalog |
| 165 | # |
| 166 | _msg: $(MSGSUBDIRS) |
| 167 | |
| 168 | |
| 169 | |
| 170 | bwos: $(BWOSDIRS) .WAIT $(SUBDIRS) |
| 171 | |
| 172 | $(BWOSDIRS) $(SUBDIRS): FRC |
| 173 | @cd $@; pwd; $(MAKE) $(TARGET) |
| 174 | |
| 175 | rootlinks: $(S5LINK) $(DICTLINK) $(ROOTBINLINKS) $(OTHERLINKS) |
| 176 | |
| 177 | $(S5LINK) $(DICTLINK) $(ROOTBINLINKS) $(OTHERLINKS): |
| 178 | $(RM) $@; $(SYMLINK) $(LINKDEST) $@ |
| 179 | |
| 180 | FRC: |