summaryrefslogtreecommitdiffstats
path: root/usr.sbin/crunch
Commit message (Collapse)AuthorAgeFilesLines
* ia64 support. Hide a.out support solely under i386. While alpha neverpeter2001-10-232-1/+8
| | | | | was released in a.out form, it does define the a.out data structures. The ia64 port does not.
* Make source crunches work as well as object crunches; broken in thejoe2001-08-171-1/+1
| | | | | | last commit that fixed object crunches. Repeat after me, "no excuses for not testing".
* Make crunchgen crunch pre-built object files again, i.e.:joe2001-08-151-10/+10
| | | | | | | | | | progs prog1 special prog1 objdir ../../prog1/obj special prog1 objs prog1.o This fixes a bug that I introduced around the time of 4.2-release. Reported by: Larry Baird <lab@gta.com>
* mdoc(7) police: s/BSD/.Bx/ where appropriate.ru2001-08-141-2/+6
|
* Perform a major cleanup of the usr.sbin Makefiles.obrien2001-07-205-9/+13
| | | | | These are not perfectly in agreement with each other style-wise, but they are orders of orders of magnitude more consistent style-wise than before.
* Remove GCC'isms in CFLAGS.obrien2001-07-201-1/+1
|
* Remove whitespace at EOL.dd2001-07-151-6/+6
|
* mdoc(7) police: removed HISTORY info from the .Os call.ru2001-07-102-2/+2
|
* Use 'LIBS+= ...' instead of 'LIBS= ...' in the generated makefilejoe2001-06-201-1/+1
| | | | | | | | so that the user can override libraries at build time. This is makes it easier to cross-compile crunch builds. Suggested by: luigi MFC after: 3 days
* mount_msdos(8) -> mount_msdosfs(8).ru2001-06-011-1/+1
|
* mount_fdesc -> mount_fdescfsru2001-05-241-2/+2
| | | | mount_portal -> mount_portalfs
* * include/elf.h has been repo copied to include/elf-hints.h, and it noobrien2001-05-021-3/+5
| | | | | | | | longer includes machine/elf.h. * consumers of elf.h now use the minimalist elf header possible. This change is motivated by Binutils 2.11.0 and too much clashing over our base elf headers and the Binutils elf headers.
* Document ``special <progname> ident <identifier>'' command.ru2001-04-041-0/+17
|
* - Call `subclean' after `clean' for each program.ru2001-04-041-2/+2
| | | | - Eliminate compiler warning.
* `buildopts' may affect the selection of object files.ru2001-03-301-1/+1
| | | | | | | Make sure we pass $(BUILDOPTS) to the `clean' target so that `make clean' works on the same set of object files. Otherwise, we may end up with an incorrectly built and up-to-date object file.
* Liberal application of style(9).joe2001-01-101-665/+758
|
* Flag an error and remove the program from the list if there isjoe2001-01-101-1/+4
| | | | | | no source directory or no objects can be determined. Initialise a structure variable.
* Retire kernfs (userland part).des2000-12-281-1/+4
|
* Clean up the source directory finding code, and in the process fix ajoe2000-12-241-16/+24
| | | | problem that occurs when a program's source isn't found.
* Use one of the TMPDIR env variable or _PATH_TMP instead of hardcodingjoe2000-12-171-1/+3
| | | | | | /tmp. Submitted by: jedgar
* Avoid potential problems with the existance of a shadow obj directoryjoe2000-12-171-1/+1
| | | | confusing the 'make -f tmpfile' in the tmpfile, by creating it in /tmp.
* Clarify an ambiguous 'else' introduced by a recent commit.joe2000-12-171-2/+2
|
* o check strdup() return valuesjoe2000-12-171-23/+30
| | | | | | | | | | o strcpy() -> strlcpy() o sprintf() -> snprintf() o mktemp() -> mkstemp() o use err() instead of errx() in out_of_memory() function since errno will probably be set Submitted by: jedgar
* Hopefully the last patch in a series to try and teach crunchgen tojoe2000-12-171-38/+62
| | | | | handle MAKEOBJDIRPREFIX better, in conjunction with the -o and -p flags.
* mdoc(7) police: fixed errors from the previous revision, keepru2000-12-011-17/+21
| | | | the synopsis in a nice form, and a few more cosmetic changes.
* Make crunchgen aware of obj directories. Formerly it hadluigi2000-11-302-31/+59
| | | | | | | | | /usr/obj hardwired in the code, now you can override it with a command line option or MAKEOBJDIRPREFIX env. variable. The above is useful to build picobsd-specific objects in some other place than /usr/obj While at it, fix documentation and change a few sprintf -> snprintf.
* mdoc(7) police: use the new features of the Nm macro.ru2000-11-202-4/+4
|
* mdoc(7) police: use certified section headers wherever possible.ru2000-11-171-1/+1
|
* mdoc(7)ify.ru2000-11-161-114/+181
|
* Add and document a new configuration command: buildopts.joe2000-11-152-3/+28
| | | | | This allows global make options to be specified within the crunch configuration file.
* Avoid use of direct troff requests in mdoc(7) manual pages.ru2000-11-102-29/+19
|
* Define a new special type: buildopts.joe2000-11-102-2/+30
| | | | | | | | | | | | This allows build flags to be specified for a particular program from within the crunch.conf file, eg: prog ppp special ppp buildopts -DNOKLDLOAD -DNOINET6 -DNONAT -DNOATM This adds '-DNOKLDLOAD -DNOINET6 -DNONAT -DNOATM' to make targets related to ppp when determining which object files to build and when calculating dependencies and building the targets.
* Since the 'when built' phrase is talking about the 'source file' westeve2000-11-091-1/+1
| | | | should be using the word 'creates' instead.
* Cause prog_make targets to include a ``make obj'' rule if the -o flagjoe2000-11-032-6/+13
| | | | | is given to crunchgen. [ This fixes the previous commit which silently added ``make obj'' ]
* A missing feature of crunchgen was the ability to supply make options onjoe2000-11-031-3/+7
| | | | | | | | | | | | | | | | | | a per program basis. This has now been added in the following way: * Harness the make header file that's specified with the -h argument: - Allow the user to define $(OPTS) to specify make arguments that should be added to every program target. - Allow the user to define $(prog_OPTS) to specify make arguments that should just be added to the build of 'prog'. * Make sure that $(OPTS) and $(prog_OPTS) are defined when looking through each program's make file to determine which object files to crunch. * When building the crunchgen makefile add $(OPTS) and $(prog_OPTS) to the depend and build rules for $(prog_OBJS).
* Add the description of some hard-learnt restrictions and a workaround.grog2000-08-281-1/+22
|
* Remove single-space hard sentence breaks. These degrade the qualitysheldonh2000-03-011-1/+2
| | | | | of the typeset output, tend to make diffs harder to read and provide bad examples for new-comers to mdoc.
* Add a few features to crunchgen to simplify the use of existingluigi2000-02-052-9/+60
| | | | | | | | | | | | | | | | | | | | | makefiles (for use with picobsd among other things). See the manpage for details, but: * -h makefile-include-name can be used to specify a file to include in the makefiles generated by crunchgen . This is a good place to specify make variables such as RELEASE_CRUNCH, NOTHIS, NOTHAT and the like. * special progname objvar variable_name in the crunch config file declares a different variable than OBJS to be used to get the list of objects. * crunchgen now looks first for Makefile.<progname> in the current directory to override the makefile in <progname> source dir. This in many cases avoids the need to patch the original makefile if the above two features are still not enough. Approved-By: jordan
* $Id$ -> $FreeBSD$peter1999-08-284-4/+4
|
* Add $Id$, to make it simpler for members of the translation teams tonik1999-07-122-0/+2
| | | | | | | | | | | | | | | | | track. The Id line is normally at the bottom of the main comment block in the man page, separated from the rest of the manpage by an empty comment, like so; .\" $Id$ .\" If the immediately preceding comment is a @(#) format ID marker than the the $Id$ will line up underneath it with no intervening blank lines. Otherwise, an additional blank line is inserted. Approved by: bde
* Temporary use different stubs for the ECOFF case; I'm trying to get thisjkh1998-10-021-1/+1
| | | | to build on the alpha, first off.
* Update the man page to match the rest of crunchide.jhay1998-09-161-4/+18
|
* Teach crunch about an elf/a.out world.jkh1998-09-146-140/+795
| | | | Submitted by: jhay
* Assume ELF-style symbol names now.jkh1998-09-141-1/+1
| | | | Submitted by: jhay
* .Sh AUTHOR -> .Sh AUTHORS. Use .An/.Aq.charnier1998-03-232-6/+6
|
* Use /bin/pwd instead of a potentially shell builtin that doessos1998-01-221-3/+1
| | | | | | not return the "real" path. This makes it possible to have the .o files put in the /usr/obj hierachy instead of in the /usr/src one.
* Remove the necessity of -ldes and -lalias etc from release/Makefile.brian1998-01-171-1/+8
| | | | | | | | | | When building a release, RELEASE_CRUNCH is defined for a `make' of the objects required by the crunch of each program. The object list is still obtained in the same way, so you must make sure that all objects are built (empty if necessary) by this make. ppp/Makefile provides an example. Reviewed by: jkh
* Add a new special called `keep' to the list of special options. Itjoerg1997-10-053-4/+33
| | | | | | | provides for a means to specify an argument for crunchide's -k option. (This is required by ntpdate.) Submitted by: peter@rhiannon.clari.net.au (Peter Hawkins)
* Use err(3).charnier1997-09-154-74/+53
|
* spelling corrections.wosch1997-09-131-2/+2
| | | | | PR: docs/4450 Submitted by: josh@quick.net
OpenPOWER on IntegriCloud