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.97 08/10/01 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 hplip \
88 ImageMagick \
89 ipmitool \
90 ircii \
91 jruby \
92 less \
93 lftp \
94 libtool \
95 lighttpd14 \
96 links \
97 logrotate \
98 mc \
99 meld \
100 mercurial \
101 mtx \
102 cdrtools \
103 dvd+rw-tools \
104 mutt \
105 mysql \
106 mysql-5-0 \
107 mysql-5-0-jdbc \
108 ncftp \
109 nethack \
110 nmap \
111 p7zip \
112 php5 \
113 postgres/pgadmin \
114 postgres/pmdbdpg \
115 postgres/pgbouncer \
116 postgres/postgresql-8.1 \
117 postgres/postgresql-8.1-tcl \
118 postgres/postgresql-8.1-jdbc \
119 postgres/postgresql-8.2 \
120 postgres/postgresql-8.2-tcl \
121 postgres/postgresql-8.2-jdbc \
122 postgres/postgresql-8.3 \
123 postgres/postgresql-8.3-tcl \
124 postgres/postgresql-upgrade \
125 postgres/postgresql-jdbc \
126 privoxy \
127 procmail \
128 psutils \
129 pycups \
130 quagga \
131 rpm2cpio \
132 rsync \
133 ruby18 \
134 samba \
135 sane-frontends \
136 screen \
137 ser \
138 serweb \
139 squid \
140 stunnel \
141 subversion \
142 sudo \
143 swig \
144 tcsh \
145 texinfo \
146 texi2html \
147 tomcat \
148 top \
149 unzip \
150 vim \
151 webmin \
152 wget \
153 which \
154 zip \
155 sma \
156 zsh
157
158 i386_SUBDIRS=
159
160 sparc_SUBDIRS=
161
162 all := TARGET= all
163 install := TARGET= install
164 clean := TARGET= clean
165 clobber := TARGET= clobber
166 lint := TARGET= lint
167
168 SUBDIRS = $(COMMON_SUBDIRS) $($(MACH)_SUBDIRS)
169
170 .PARALLEL: $(SUBDIRS)
171
172 all install clean clobber lint: $(FIRST_SUBDIRS) .WAIT $(SUBDIRS)
173
174 $(FIRST_SUBDIRS) $(SUBDIRS): FRC
175 @cd $@; pwd; $(MAKE) $(MAKEFILE) $(TARGET)
176
177
178 tomcat: ant
179 foomatic-filters: cups
180 gimp-print: cups
181 hplip: cups ghostscript
182 ghostscript: cups
183 samba: cups
184 pycups: cups
185 a2ps: psutils ImageMagick
186 foomatic-ppd: gimp-print
187 ser: mysql
188 apr-util/apr-util-1.3: apr/apr-1.3 mysql-5-0 postgres/postgresql-8.3
189 apache2: apr-util/apr-util-1.3
190 apache2-modperl: apache2
191 postgres/postgresql-8.1-tcl: postgres/postgresql-8.1
192 postgres/postgresql-8.2-tcl: postgres/postgresql-8.2
193 postgres/postgresql-8.3-tcl: postgres/postgresql-8.3
194 postgres/postgresql-upgrade: postgres/postgresql-8.2
195 postgres/pgadmin: postgres/postgresql-8.2
196 postgres/pmdbdpg: postgres/postgresql-8.2
197 subversion: apache2 swig
198 php5: apache2 mysql-5-0 postgres/postgresql-8.3
199
200 FRC:
--- EOF ---