6758301 Hexedit to be included into SFW consolidation
1 # 2 # CDDL HEADER START 3 # 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. 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 # 21 22 # 23 # Copyright 2008 Sun Microsystems, Inc. All rights reserved. 24 # Use is subject to license terms. 25 # 26 # ident "@(#)Makefile 1.98 08/10/16 SMI" 27 # 28 29 # 30 # cmd/Makefile 31 # 32 # include global definitions 33 include ../Makefile.master 34 35 # Commands are listed one per line so that TeamWare can 36 # auto-merge most changes. 37 # 38 # Note that some commands are first in the list, violating 39 # alphabetical order. This is because they are very long-running 40 # and should be given the most wall-clock time for a parallel build. 41 42 COMMON_SUBDIRS= \ 43 gcc \ 44 binutils \ 45 a2ps \ 46 ant \ 47 apr/apr-1.3 \ 48 apr-util/apr-util-1.3 \ 49 apache \ 50 apache2 \ 51 apache2-modperl \ 52 autoconf \ 53 automake/automake-1.9.6 \ 54 automake/automake-1.10 \ 55 bash \ 56 bcc \ 57 bind \ 58 bison \ 59 bzip2 \ 60 coreutils \ 61 cvs \ 62 cups \ 63 diffstat \ 64 diffutils \ 65 emacs \ 66 erlang \ 67 expect \ 68 fetchmail \ 69 foomatic-filters \ 70 foomatic-ppd \ 71 gimp-print \ 72 flex \ 73 gawk \ 74 gdb \ 75 gettext \ 76 gpatch \ 77 ggrep \ 78 ghostscript \ 79 gm4 \ 80 gmake \ 81 gnu-gperf \ 82 gnu-gs-fonts-other \ 83 gnu-gs-fonts-std \ 84 gsed \ 85 gtar \ 86 gzip \ 87 hexedit \ 88 hplip \ 89 ImageMagick \ 90 ipmitool \ 91 ircii \ 92 jruby \ 93 less \ 94 lftp \ 95 libtool \ 96 lighttpd14 \ 97 links \ 98 logrotate \ 99 mc \ 100 meld \ 101 mercurial \ 102 mtx \ 103 cdrtools \ 104 dvd+rw-tools \ 105 mutt \ 106 mysql \ 107 mysql-5-0 \ 108 mysql-5-0-jdbc \ 109 ncftp \ 110 nethack \ 111 nmap \ 112 p7zip \ 113 php5 \ 114 postgres/pgadmin \ 115 postgres/pmdbdpg \ 116 postgres/pgbouncer \ 117 postgres/postgresql-8.1 \ 118 postgres/postgresql-8.1-tcl \ 119 postgres/postgresql-8.1-jdbc \ 120 postgres/postgresql-8.2 \ 121 postgres/postgresql-8.2-tcl \ 122 postgres/postgresql-8.2-jdbc \ 123 postgres/postgresql-8.3 \ 124 postgres/postgresql-8.3-tcl \ 125 postgres/postgresql-upgrade \ 126 postgres/postgresql-jdbc \ 127 privoxy \ 128 procmail \ 129 psutils \ 130 pycups \ 131 quagga \ 132 rpm2cpio \ 133 rsync \ 134 ruby18 \ 135 samba \ 136 sane-frontends \ 137 screen \ 138 ser \ 139 serweb \ 140 squid \ 141 stunnel \ 142 subversion \ 143 sudo \ 144 swig \ 145 tcsh \ 146 texinfo \ 147 texi2html \ 148 tomcat \ 149 top \ 150 unzip \ 151 vim \ 152 webmin \ 153 wget \ 154 which \ 155 zip \ 156 sma \ 157 zsh 158 159 i386_SUBDIRS= 160 161 sparc_SUBDIRS= 162 163 all := TARGET= all 164 install := TARGET= install 165 clean := TARGET= clean 166 clobber := TARGET= clobber 167 lint := TARGET= lint 168 169 SUBDIRS = $(COMMON_SUBDIRS) $($(MACH)_SUBDIRS) 170 171 .PARALLEL: $(SUBDIRS) 172 173 all install clean clobber lint: $(FIRST_SUBDIRS) .WAIT $(SUBDIRS) 174 175 $(FIRST_SUBDIRS) $(SUBDIRS): FRC 176 @cd $@; pwd; $(MAKE) $(MAKEFILE) $(TARGET) 177 178 179 tomcat: ant 180 foomatic-filters: cups 181 gimp-print: cups 182 hplip: cups ghostscript 183 ghostscript: cups 184 samba: cups 185 pycups: cups 186 a2ps: psutils ImageMagick 187 foomatic-ppd: gimp-print 188 ser: mysql 189 apr-util/apr-util-1.3: apr/apr-1.3 mysql-5-0 postgres/postgresql-8.3 190 apache2: apr-util/apr-util-1.3 191 apache2-modperl: apache2 192 postgres/postgresql-8.1-tcl: postgres/postgresql-8.1 193 postgres/postgresql-8.2-tcl: postgres/postgresql-8.2 194 postgres/postgresql-8.3-tcl: postgres/postgresql-8.3 195 postgres/postgresql-upgrade: postgres/postgresql-8.2 196 postgres/pgadmin: postgres/postgresql-8.2 197 postgres/pmdbdpg: postgres/postgresql-8.2 198 subversion: apache2 swig 199 php5: apache2 mysql-5-0 postgres/postgresql-8.3 200 201 FRC: --- EOF ---