summaryrefslogtreecommitdiffstats
path: root/Makefile
Commit message (Collapse)AuthorAgeFilesLines
...
* Don't use `&&' in any shell commands here. Using it to give conditionalbde1998-05-151-117/+117
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | execution is usually unnecessary in BSD Makefiles because BSD make invokes shells with -e. Using it to give conditional execution is often wrong in BSD makefiles because BSD make joins shell commands when invoked in certain ways (in particular, as `make -jN'). Example makefile: --- clean: cd / false && true rm -rf * # a dangerous command --- This should terminate after the `false && true' command fails, but it doesn't when the commands are joined (`false && true' is a non- simple command, so -e doesn't cause termination). The b-maked version: --- clean: cd / false; true rm -rf * # a dangerous command --- terminates after the `false' command fails (`false' is a simple command, so -e causes termination). However, for versions of make like gnu make that don't invoke shells with -e, this change completely breaks the makefile. This is one of the fixes for the bug suite that caused `make world' to sometimes put raw cpp output in .depend files. Building of cc sometimes failed, but the failure did not terminate the build immediately, and various wrong versions of the cc components were used until one was wrong enough to cause a fatal error.
* Removed share/info from build-tools. It should never have been there,bde1998-05-101-2/+1
| | | | | | | and became redundant when it was put in SUBDIR, and became bogus when WORLDTMP was introduced, and became broken when INFODIR was introduced. PR: 6138
* Fix the problem people are having building -current on a -stable system.jb1998-05-081-7/+7
| | | | | | | | The headers that are installed in WORLDTMP are part of the interface that includes libraries like libc, so they must be installed together. This means that lib-tools and build-tools should be merged. The FreeBSD build only works in hosted form where it is assumed that the installed version contains adequate tools to build the latest release.
* Added patch to build-tools (now needed to make gdb, sigh).bde1998-05-021-1/+2
| | | | Pointed out by: andreas
* Don't build dependencies unless NOCLEAN is set. This speeds upbde1998-04-271-13/+24
| | | | | | | | | | | | | `make world' by about 14% here (down to 4490 seconds real on a K6/233). Temporarily skip this optimization when building with -j, since there are still many broken makefiles. Fixed NOCLEANDIR option. Cleaning of `.depend' was broken. Put -nostdinc in CFLAGS, not in CC, and don't override the default CC. This fixes enforcing use of ${WORLDTMP}/usr/include. Don't install library man pages in ${WORLDTMP}.
* Use more reasonable defaults for SUP variables (and print themjkh1998-04-261-4/+4
| | | | correctly) now that sup is long since dead and buried.
* make includes has to execute "make beforeinstall" in src/lib/libcalendarandreas1998-04-251-1/+2
| | | | | as well, otherwise "make depend" during "make buildworld" fails in usr.bin/ncal
* Don't build shared libraries twice for `make world'. This reducesbde1998-04-241-45/+73
| | | | | | | | | | `make world' times by about 10%. Use a new `bootstrap-libraries' target to build just enough (static) libraries to bootstrap the tools, and delay building of shared libraries until all the tools have been built. Fixed `/usr/bin/make world'. The version of `make' that we buildis nand use is named "make", not ${MAKE}.
* Cosmetic: put '@' in front of a very long command.dt1998-04-191-2/+2
|
* Make the decision to compile kerberosIV a bit more secure by lookingmarkm1998-03-261-2/+2
| | | | for the appropriate directory.
* Build the initial `make' in the temporary build tree so that its forcedbde1998-03-191-9/+9
| | | | | | | | | cleaning doesn't affect the normal copy. Save a little time by not doing unnecessary clean, depend nd cleandepend steps. Reviewed by: mckay@freebsd.org Added xargs to build-tools. It may be used for kdump and truss.
* Restored an (apparently unnecessary) -B for installing lib-tools.bde1998-03-161-2/+2
| | | | | The install target is -j-unsafe in general, so we use -B for installing everything in `make world'.
* Don't force NOPIC for building tools at all for now, so that somebde1998-03-151-3/+4
| | | | | | (slightly stale) shared libraries get installed before non-tools are linked. The 2-stage build of the libraries has never really worked, since we link to the libraries built in the first stage.
* Don't force NOPIC or NOSHARED for building tools in the NOCLEAN case,bde1998-03-141-4/+11
| | | | | | | | | | | so that dirtier-than-previously tools aren't left lying around to be installed. Filter out NOPIC from ${MK_FLAGS} for `make ${OBJDIR}' for ld (and some other things), so that the obj dir for ld/rtld always gets re-made. Fixed a literal "make".
* Build all tools shared, and don't build any shared libraries for tools.bde1998-03-131-41/+47
| | | | | | | | | | | | | | | | | | | Build libraries (for linking the tools to) in a more correct order (for linking freshly created shared libraries to each other). This is probably a no-op now that shared libraries for tools aren't built, but I didn't test any intermediate versions. Security-related directories that are not built by default may now be misordered for the shared case. Don't build libcompat specially. It isn't used for tools, and shouldn't be used in /usr/src (it is only used for IPXrouted and crufty games). Added missing ${.CURDIR} to existence tests for library directories. Existence tests for top-level directories are still broken. Test for library directories actually being built, not for directories above them.
* compile_et is now used early to build includes for libss, so build itbde1998-03-121-4/+5
| | | | | | | | earlier. This is probably unnecessary. Added now-necessary -B for installing headers for libss. Removed now-unnecessary -B for building cleandepend for rpcgen.
* Fixed missing SHLIBDIR in GCC_EXEC_PREFIX.bde1998-03-121-26/+28
| | | | | | | | | | | | | | | | | | | | Add the path to the source .mk files to the beginning of .MAKEFLAGS instead of to the end, so that there is more chance of it having priority. Additions in /etc/make.conf still have priority for sub-makes if they are also at the beginning, although this is probably not wanted for building /usr/src. Use ${MK_FLAGS} for building dependencies for tools. This saves time building dependencies for tools that won't be created (mainly profiled libraries) and will be necessary to give correct dependencies when tools are built static. Spell the object directory as ${OBJDIR} consistently (even when we know that ${OBJDIR} == "obj"). Print ${DESTDIR} in messages where appropriate. Fixed some misformattings.
* Separated header creation from header installation in libss. Createbde1998-03-121-2/+2
| | | | the libss headers before installing them in `make world'.
* Change the bootstrap makefile inclusion to be general based on thejb1998-02-191-4/+4
| | | | | | MACHINE. This lets me play with porting to m68k too. 8-) That is a good test for portability because MACHINE != MACHINE_ARCH and m68k is big endian.
* MF22:nate1998-02-191-1/+6
| | | | | | | - After the install has been done, but before makedb is run, run 'ldconfig -R' to pick up new shlib dependencies. Suggested by: Amancio and a whole lot of other folks
* -DNOTOOLS to not rebuild any tools during buildworldadam1998-02-061-1/+10
|
* Test for ${MACHINE} == "alpha" and include the bootstrap makefile insteadjb1998-01-111-4/+15
| | | | | | of doing the normal build. When the alpha bootstrap is complete (there is more work to do!), the alpha will build like the i386 does now. I changed i386 references to ${MACHINE} now that we're multi-architecture.
* Do not use -B in initial build of "make". It doesn't exist in 2.1.x.asami1997-10-101-4/+8
| | | | | | | Instead, list the targets one per command line. Reviewed by: bde Submitted by: bde (part)
* Removed uneeded ${.MAKEFLAGS} again.bde1997-10-071-22/+22
| | | | | Originally committed in: rev.1.141 Spammed by: rev.1.149 (mouldy parallel make diffs)
* Having to review all changes to this file _very_ carefullyjkh1997-10-061-3/+3
| | | | led me to find 2 more errors which were there before. :)
* Hooboy!jkh1997-10-061-13/+41
| | | | | | | | | | | | | | Did I ever spam this file good with that last commit. Despite 3 reviewers, we still managed to revoke the eBones fixes, TCL 8.0 support, libvgl and a host of other new things from this file in the process of parallelizing the Makefile. DOH! I think we need more pointy hats - this particular incident is worthy of a small children's birthday party's worth of pointy hats. ;-) I certainly intend to take more care with the processing of aged diffs in the future, even if it does mean reading through 20K's worth of them. I might also be a bit more anal about asking for more up-to-date changes before looking at them. ;)
* Removed redundant 'all' arg to " Making Make" target.fsmp1997-10-051-3/+3
| | | | Removed "-r RELENG_2_2" from 'update' target.
* How the heck did this get back??markm1997-10-051-3/+3
|
* Changes to support full make parallelism (-j<n>) in the worldjkh1997-10-051-87/+92
| | | | | | target. Reviewed by: <many different folks> Submitted by: Nickolay N. Dudorov" <nnd@nnd.itfs.nsk.su>
* When bootstrapping lex, the object directory for lex/lib would be deletedmckay1997-09-281-2/+5
| | | | | without being recreated. A read-only source compile would then fail shortly afterwards trying to write .depend into the source tree.
* Change for KTH KerberosIV.markm1997-09-281-14/+22
| | | | -DMAKE_EBONES is changed to -DMAKE_KERBEROS4
* When making make, do cleandir *before* objdir or we'll endjkh1997-09-261-2/+2
| | | | | up with a blown objdir for the depend stage, leaving the .depend file in ${SRCDIR} instead.
* Backed out rev.1.136 and rev.1.144. Force SHARED=symlinks in a differentbde1997-09-161-3/+3
| | | | | | | | | way - for buildworld only. Rev.1.136 broke the (deprecated) external includes target. Rev.1.144 was a half-baked backout of rev.1.136. It broke SHARED=symlinks for the buildworld target and installation of subdirs of src/include for the includes target.
* When calling the src/include Makefile use the shorthand ``all beforeinstall''rgrimes1997-09-151-2/+2
| | | | | inplace of ``all installhdrs symlinks'' so those of us who run with SHARED=copies get the right results.
* Back out use of -m, since 2.1.x apparently do not have it. (sigh..)peter1997-09-051-3/+3
|
* Fix the ${BINFORMAT} definition problem during 'make {build}world'. Thepeter1997-08-311-3/+3
| | | | | | | | wrong switches were being passed to 'make' that caused sys.mk to come from the /usr/share/mk location but the bsd.*.mk files to come from the source tree in src/share/mk. This was bound to break sooner or later. Submitted by: Dmitrij Tejblum <dima@tejblum.dnttm.rssi.ru>
* Remove unneeded ${.MAKEFLAGS} being explicitly passed on via the commandpeter1997-08-261-25/+25
| | | | | | line.. PR: 4368
* Use new installhdrs target to install tcl includes.bde1997-08-251-2/+2
|
* Added directories in the includes target so that it installsbde1997-08-211-1/+8
| | | | | | everything that a full install would (modulo bugs in rpcsvc/Makefile). The missing things weren't used (except for mp.h from libmp), but there are relatively few of them and it's easier to be complete.
* Restored rev.1.122, which was clobbered by copying from -stable inbde1997-08-211-4/+13
| | | | | | rev.1.134. Split long lines.
* Pass command line args to 'buildworld' and 'installworld' etc. Otherwisepeter1997-08-181-5/+5
| | | | 'make -DNOCLEAN world' is completely ignored.
* In the includes target, call the header install target explicitly and thenpeter1997-08-181-2/+2
| | | | | | | | | call the 'symlinks' target to build the /usr/obj/tmp/install/sys tree since In the includes target, call the header install target explicitly and then call the 'symlinks' target to build the /usr/obj/tmp/install/sys tree since we set this up manually earlier, and if we do a 'make all install', we replace the symlink tree in the obj dirs with new copies of the files which breaks any chance of -DNOCLEAN working.
* fix a make world problem.andreas1997-08-171-1/+2
| | | | | | updated beforeinstall target. mp.h from gnu/lib/libgmp.h has to be installed to /usr/include so that usr.bin/chkey and usr.bin/newkey can be compiled.
* Merge from -stable; NOTCL hook in beforeinstall.asami1997-08-121-1/+4
|
* Merge buildworld/installworld patch to Makefile from RELENG_2_2. Patchasami1997-08-051-85/+191
| | | | | | | a couple *.mk files to enable -current world building on really old machines (e.g., 2.1.5). Reviewed by: too many many people to list here, special thanks to bde
* More whitespace/tab fixes.asami1997-07-311-6/+6
| | | | Submitted by: bde
* Consistently use tabs in the leading comments.asami1997-07-311-3/+3
| | | | Submitted by: bde (yes, I'm serious)
* Remove sgml stuff from the build-tools target. It is no longer usedjfieber1997-06-081-5/+2
| | | | in a make world.
* Add libmp and libz to the includes target. This makes "make includes -DCLOBBER;jhay1997-06-081-1/+3
| | | | | make depend; make all" work. I think there should be a better than adding each library directory here.
* make beforeinstall in libalias from the includes targetpeter1997-05-261-1/+2
|
OpenPOWER on IntegriCloud