Rename bsd.cpu.mk into bsd.cpu.gcc2.mk and add the proper Makefile magic
[dragonfly.git] / share / mk / bsd.README
1 #       @(#)bsd.README  8.2 (Berkeley) 4/2/94
2 # $FreeBSD: src/share/mk/bsd.README,v 1.15.2.6 2002/07/19 08:34:07 ru Exp $
3 # $DragonFly: src/share/mk/bsd.README,v 1.2 2003/06/17 04:37:02 dillon Exp $
4
5 XXX This document is seriously out of date, it is currenly being revised.
6
7 This is the README file for the new make "include" files for the BSD
8 source tree.  The files are installed in /usr/share/mk, and are, by
9 convention, named with the suffix ".mk".
10
11 bsd.dep.mk              - handle Makefile dependencies
12 bsd.doc.mk              - building troff system documents
13 bsd.info.mk             - building GNU Info hypertext system
14 bsd.kern.mk             - define warning flags for compiling the kernel
15 bsd.kmod.mk             - building loadable kernel modules
16 bsd.lib.mk              - support for building libraries
17 bsd.libnames.mk         - define library names
18 bsd.man.mk              - installing manual pages and their links
19 bsd.obj.mk              - creating 'obj' directories and cleaning up
20 bsd.own.mk              - define common variables
21 bsd.port.mk             - building ports
22 bsd.port.subdir.mk      - targets for building subdirectories for ports
23 bsd.prog.mk             - building programs from source files
24 bsd.sgml.mk             - building SGML documents
25 bsd.subdir.mk           - targets for building subdirectories
26
27
28 Note, this file is not intended to replace reading through the .mk
29 files for anything tricky.
30
31 See also make(1), mkdep(1) and `PMake - A Tutorial', 
32 located in /usr/share/doc/psd/12.make.
33
34 =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
35
36 RANDOM THINGS WORTH KNOWING:
37
38 The files are simply C-style #include files, and pretty much behave like
39 you'd expect.  The syntax is slightly different in that a single '.' is
40 used instead of the hash mark, i.e. ".include <bsd.prog.mk>".
41
42 One difference that will save you lots of debugging time is that inclusion
43 of the file is normally done at the *end* of the Makefile.  The reason for
44 this is because .mk files often modify variables and behavior based on the
45 values of variables set in the Makefile.  To make this work, remember that
46 the FIRST target found is the target that is used, i.e. if the Makefile has:
47
48         a:
49                 echo a
50         a:
51                 echo a number two
52
53 the command "make a" will echo "a".  To make things confusing, the SECOND
54 variable assignment is the overriding one, i.e. if the Makefile has:
55
56         a=      foo
57         a=      bar
58
59         b:
60                 echo ${a}
61
62 the command "make b" will echo "bar".  This is for compatibility with the
63 way the V7 make behaved.
64
65 It's fairly difficult to make the BSD .mk files work when you're building
66 multiple programs in a single directory.  It's a lot easier split up the
67 programs than to deal with the problem.  Most of the agony comes from making
68 the "obj" directory stuff work right, not because we switch to a new version
69 of make.  So, don't get mad at us, figure out a better way to handle multiple
70 architectures so we can quit using the symbolic link stuff.  (Imake doesn't
71 count.)
72
73 The file .depend in the source directory is expected to contain dependencies
74 for the source files.  This file is read automatically by make after reading
75 the Makefile.
76
77 The variable DESTDIR works as before.  It's not set anywhere but will change
78 the tree where the file gets installed.
79
80 The profiled libraries are no longer built in a different directory than
81 the regular libraries.  A new suffix, ".po", is used to denote a profiled
82 object.
83
84 =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
85
86 The include file <sys.mk> has the default rules for all makes, in the BSD
87 environment or otherwise.  You probably don't want to touch this file.
88
89 =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
90
91 The include file <bsd.man.mk> handles installing manual pages and their
92 links.
93
94 It has three targets:
95
96         all-man:
97                 build manual pages.
98         maninstall:
99                 install the manual pages and their links.
100         manlint:
101                 verify the validity of manual pages.
102
103 It sets/uses the following variables:
104
105 MANDIR          Base path for manual installation.
106
107 MANGRP          Manual group.
108
109 MANOWN          Manual owner.
110
111 MANMODE         Manual mode.
112
113 MANSUBDIR       Subdirectory under the manual page section, i.e. "/vax"
114                 or "/tahoe" for machine specific manual pages.
115
116 MAN             The manual pages to be installed (use a .1 - .9 suffix).
117
118 MLINKS          List of manual page links (using a .1 - .9 suffix).  The
119                 linked-to file must come first, the linked file second,
120                 and there may be multiple pairs.  The files are soft-linked.
121
122 The include file <bsd.man.mk> includes a file named "../Makefile.inc" if
123 it exists.
124
125 =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
126
127 The include file <bsd.own.mk> contains the owners, groups, etc. for both
128 manual pages and binaries.
129
130 It has no targets.
131
132 It sets/uses the following variables:
133
134 BINGRP          Binary group.
135
136 BINOWN          Binary owner.
137
138 BINMODE         Binary mode.
139
140 STRIP           The flag passed to the install program to cause the binary
141                 to be stripped.  This is to be used when building your
142                 own install script so that the entire system can be made
143                 stripped/not-stripped using a single nob.
144
145 MANDIR          Base path for manual installation.
146
147 MANGRP          Manual group.
148
149 MANOWN          Manual owner.
150
151 MANMODE         Manual mode.
152
153 This file is generally useful when building your own Makefiles so that
154 they use the same default owners etc. as the rest of the tree.
155
156 =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
157
158 The include file <bsd.prog.mk> handles building programs from one or
159 more source files, along with their manual pages.  It has a limited number
160 of suffixes, consistent with the current needs of the BSD tree.
161
162 It has seven targets:
163
164         all:
165                 build the program and its manual page
166         clean:
167                 remove the program, any object files and the files a.out,
168                 Errs, errs, mklog, and ${PROG}.core.
169         cleandir:
170                 remove all of the files removed by the target clean, as
171                 well as .depend, tags, and any manual pages.
172         depend:
173                 make the dependencies for the source files, and store
174                 them in the file .depend.
175         install:
176                 install the program and its manual pages; if the Makefile
177                 does not itself define the target install, the targets
178                 beforeinstall and afterinstall may also be used to cause
179                 actions immediately before and after the install target
180                 is executed.
181         lint:
182                 run lint on the source files
183         tags:
184                 create a tags file for the source files.
185
186 It sets/uses the following variables:
187
188 BINGRP          Binary group.
189
190 BINOWN          Binary owner.
191
192 BINMODE         Binary mode.
193
194 CLEANFILES      Additional files to remove and
195 CLEANDIRS       additional directories to remove during clean and cleandir
196                 targets.  "rm -f" and "rm -rf" used respectively.
197
198 COPTS           Additional flags to the compiler when creating C objects.
199
200 FILES           A list of non-executable files.
201                 The installation is controlled by the FILESNAME, FILESOWN,
202                 FILESGRP, FILESMODE, FILESDIR variables that can be
203                 further specialized by FILES<VAR>_<file>.
204
205 HIDEGAME        If HIDEGAME is defined, the binary is installed in
206                 /usr/games/hide, and a symbolic link is created to
207                 /usr/games/dm.
208
209 LDADD           Additional loader objects.  Usually used for libraries.
210                 For example, to load with the compatibility and utility
211                 libraries, use:
212
213                         LDFILES=-lutil -lcompat
214
215 LDFLAGS         Additional loader flags.
216
217 LINKS           The list of binary links; should be full pathnames, the
218                 linked-to file coming first, followed by the linked
219                 file.  The files are hard-linked.  For example, to link
220                 /bin/test and /bin/[, use:
221
222                         LINKS=  ${DESTDIR}/bin/test ${DESTDIR}/bin/[
223
224 MAN             Manual pages (should end in .1 - .9).  If no MAN variable
225                 is defined, "MAN=${PROG}.1" is assumed.
226
227 PROG            The name of the program to build.  If not supplied, nothing
228                 is built.
229
230 PROG_CXX        If defined, the name of the program to build.  Also
231                 causes <bsd.prog.mk> to link the program with the
232                 standard C++ library.  PROG_CXX overrides the value
233                 of PROG if PROG is also set.
234
235 PROGNAME        The name that the above program will be installed as, if
236                 different from ${PROG}.
237
238 SRCS            List of source files to build the program.  If SRCS is not
239                 defined, it's assumed to be ${PROG}.c or, if PROG_CXX is
240                 defined, ${PROG_CXX}.cc.
241
242 DPADD           Additional dependencies for the program.  Usually used for
243                 libraries.  For example, to depend on the compatibility and
244                 utility libraries use:
245
246                         SRCLIB=${LIBCOMPAT} ${LIBUTIL}
247
248                 There is a predefined identifier for each (non-profiled,
249                 non-shared) library and object.  Library file names are
250                 transformed to identifiers by removing the extension and
251                 converting to upper case.
252
253                 There are no special identifiers for profiled or shared
254                 libraries or objects.  The identifiers for the standard
255                 libraries are used in DPADD.  This works correctly iff all
256                 the libraries are built at the same time.  Unfortunately,
257                 it causes unnecessary relinks to shared libraries when
258                 only the static libraries have changed.  Dependencies on
259                 shared libraries should be only on the library version
260                 numbers.
261
262 STRIP           The flag passed to the install program to cause the binary
263                 to be stripped.
264
265 SUBDIR          A list of subdirectories that should be built as well.
266                 Each of the targets will execute the same target in the
267                 subdirectories.
268
269 SCRIPTS         A list of interpreter scripts [file.{sh,csh,pl,awk,...}].
270                 The installation is controlled by the SCRIPTSNAME, SCRIPTSOWN,
271                 SCRIPTSGRP, SCRIPTSMODE, SCRIPTSDIR variables that can be
272                 further specialized by SCRIPTS<VAR>_<script>.
273
274 The include file <bsd.prog.mk> includes the file named "../Makefile.inc"
275 if it exists, as well as the include file <bsd.man.mk>.
276
277 Some simple examples:
278
279 To build foo from foo.c with a manual page foo.1, use:
280
281         PROG=   foo
282
283         .include <bsd.prog.mk>
284
285 To build foo from foo.c with a manual page foo.2, add the line:
286
287         MAN2=   foo.2
288
289 If foo does not have a manual page at all, add the line:
290
291         NOMAN=  noman
292
293 If foo has multiple source files, add the line:
294
295         SRCS=   a.c b.c c.c d.c
296
297 =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
298
299 The include file <bsd.subdir.mk> contains the default targets for building
300 subdirectories.  It has the same seven targets as <bsd.prog.mk>: all, clean,
301 cleandir, depend, install, lint, and tags.  For all of the directories
302 listed in the variable SUBDIRS, the specified directory will be visited
303 and the target made.  There is also a default target which allows the
304 command "make subdir" where subdir is any directory listed in the variable
305 SUBDIRS.
306
307 =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
308
309 The include file <bsd.lib.mk> has support for building libraries.  It has
310 the same seven targets as <bsd.prog.mk>: all, clean, cleandir, depend,
311 install, lint, and tags.  It has a limited number of suffixes, consistent
312 with the current needs of the BSD tree.
313
314 It sets/uses the following variables:
315
316 LIBDIR          Target directory for libraries.
317
318 LINTLIBDIR      Target directory for lint libraries.
319
320 LIBGRP          Library group.
321
322 LIBOWN          Library owner.
323
324 LIBMODE         Library mode.
325
326 LDADD           Additional loader objects.
327
328 MAN             The manual pages to be installed (use a .1 - .9 suffix).
329
330 SRCS            List of source files to build the library.  Suffix types
331                 .s, .c, and .f are supported.  Note, .s files are preferred
332                 to .c files of the same name.  (This is not the default for
333                 versions of make.)
334
335 The include file <bsd.lib.mk> includes the file named "../Makefile.inc"
336 if it exists, as well as the include file <bsd.man.mk>.
337
338 It has rules for building profiled objects; profiled libraries are
339 built by default.
340
341 Libraries are ranlib'd before installation.