Name Date Size #Lines LOC

..--

MakefileHD16-Jan-2021739 2621

bsd.READMEHD16-Jan-202112.4 KiB369260

bsd.cpu.custom.mkHD02-Jan-2014200 85

bsd.cpu.gcc47.mkHD21-Oct-20172.9 KiB10867

bsd.cpu.gcc80.mkHD05-May-20204 KiB13896

bsd.cpu.mkHD16-Jan-20212 KiB6937

bsd.crunchgen.mkHD13-Sep-20186.5 KiB208143

bsd.dep.mkHD13-Sep-20186.4 KiB254171

bsd.files.mkHD02-Jan-20142 KiB7763

bsd.hostlib.mkHD16-Jan-20211.5 KiB7252

bsd.hostprog.mkHD31-May-20201.3 KiB6643

bsd.incs.mkHD02-Jan-20142.3 KiB8671

bsd.init.mkHD22-Dec-2017807 3320

bsd.kmod.mkHD16-Jan-2021546 1510

bsd.lib.mkHD16-Jan-20218.6 KiB327258

bsd.libnames.mkHD14-Sep-20213.9 KiB10086

bsd.links.mkHD22-Dec-2017778 3531

bsd.man.mkHD23-Jan-20256.4 KiB249164

bsd.nls.mkHD02-Jan-20141.8 KiB7735

bsd.obj.mkHD02-Jan-20143.6 KiB14472

bsd.own.mkHD16-Jan-20214.5 KiB16742

bsd.port.mkHD02-Jan-2014403 178

bsd.port.options.mkHD02-Jan-2014169 94

bsd.port.post.mkHD02-Jan-2014146 83

bsd.port.pre.mkHD02-Jan-2014147 83

bsd.port.subdir.mkHD02-Jan-2014195 73

bsd.prog.mkHD31-May-20204.2 KiB190142

bsd.subdir.mkHD05-May-20203 KiB11662

bsd.symver.mkHD02-Oct-2014861 3017

bsd.sys.mkHD31-Dec-20225.3 KiB173132

sys.mkHD31-Dec-20228.3 KiB361230

version_gen.awkHD02-Oct-20146.3 KiB250186

bsd.README

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