From owner-cvs-user Mon Jul 6 22:39:06 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA28128 for cvs-user-outgoing; Mon, 6 Jul 1998 22:39:06 -0700 (PDT) (envelope-from owner-cvs-user) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id WAA27808; Mon, 6 Jul 1998 22:37:48 -0700 (PDT) (envelope-from bde@FreeBSD.org) From: Bruce Evans Received: (from bde@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id WAA13954; Mon, 6 Jul 1998 22:37:37 -0700 (PDT) Date: Mon, 6 Jul 1998 22:37:37 -0700 (PDT) Message-Id: <199807070537.WAA13954@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-user@FreeBSD.ORG Subject: cvs commit: src Makefile Sender: owner-cvs-user@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk bde 1998/07/06 22:37:36 PDT Modified files: . Makefile Log: Build internal tools in build-tools so that they have some chance of working when the target system is not binary compatible. Use various hacks to work around minor problems in the source and binary tree layouts: - caesar and strfile are built normally (the source layout is good), then installed by copying them to ${WORLDTMP}/usr/bin (they are installed in ${WORLDTMP}/usr/games, but I don't want to put that in $PATH). - colldef and mklocale are built and installed normally. Messy and incomplete relative path searches for them and caesar and strfile can now go away. - internal tools that aren't installed are now built and left lying around for the `make all' pass to use. If the target system is not binary compatible, it is critical that these tools don't get rebuilt. Cleaning of the obj tree before building the internal tools should ensure this. - most internal tools are built using internal build-tools targets, but tn3270 is simpler for a change - it has all the tools in a separate tree, so they can be built using `make all'. Revision Changes Path 1.204 +19 -1 src/Makefile From owner-cvs-user Tue Jul 7 03:00:22 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA00829 for cvs-user-outgoing; Tue, 7 Jul 1998 03:00:22 -0700 (PDT) (envelope-from owner-cvs-user) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA00772; Tue, 7 Jul 1998 03:00:05 -0700 (PDT) (envelope-from bde@FreeBSD.org) From: Bruce Evans Received: (from bde@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA21215; Tue, 7 Jul 1998 02:59:51 -0700 (PDT) Date: Tue, 7 Jul 1998 02:59:51 -0700 (PDT) Message-Id: <199807070959.CAA21215@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-user@FreeBSD.ORG Subject: cvs commit: src Makefile Sender: owner-cvs-user@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk bde 1998/07/07 02:59:50 PDT Modified files: . Makefile Log: Oops, don't build tools for building games, etc. when we're not building games, etc. Define _BUILD_TOOLS in sub-makes for building tools. This will be used to avoid using uninstalled tools in colldef and mklocale. Revision Changes Path 1.205 +35 -18 src/Makefile