From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on inbox.vuxu.org X-Spam-Level: X-Spam-Status: No, score=-1.0 required=5.0 tests=MAILING_LIST_MULTI autolearn=ham autolearn_force=no version=3.4.4 Received: (qmail 3521 invoked from network); 23 Mar 2023 20:39:17 -0000 Received: from minnie.tuhs.org (50.116.15.146) by inbox.vuxu.org with ESMTPUTF8; 23 Mar 2023 20:39:17 -0000 Received: from minnie.tuhs.org (localhost [IPv6:::1]) by minnie.tuhs.org (Postfix) with ESMTP id 4B9514134D; Fri, 24 Mar 2023 06:39:13 +1000 (AEST) Received: from mcvoy.com (mcvoy.com [192.169.23.250]) by minnie.tuhs.org (Postfix) with ESMTPS id 9902D41331 for ; Fri, 24 Mar 2023 06:39:06 +1000 (AEST) Received: by mcvoy.com (Postfix, from userid 3546) id 3364A35E623; Thu, 23 Mar 2023 13:39:06 -0700 (PDT) Date: Thu, 23 Mar 2023 13:39:06 -0700 From: Larry McVoy To: KenUnix Message-ID: <20230323203906.GJ22493@mcvoy.com> References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.24 (2015-08-30) Message-ID-Hash: CXIETJXMFGPURVZJLZJU4FWPQCI7GHQO X-Message-ID-Hash: CXIETJXMFGPURVZJLZJU4FWPQCI7GHQO X-MailFrom: lm@mcvoy.com X-Mailman-Rule-Misses: dmarc-mitigation; no-senders; approved; emergency; loop; banned-address; member-moderation; nonmember-moderation; administrivia; implicit-dest; max-recipients; max-size; news-moderation; no-subject; digests; suspicious-header CC: UNIX TUHS Group X-Mailman-Version: 3.3.6b1 Precedence: list Subject: [TUHS] Re: 3B2 System V 3.2 make List-Id: The Unix Heritage Society mailing list Archived-At: List-Archive: List-Help: List-Owner: List-Post: List-Subscribe: List-Unsubscribe: On Thu, Mar 23, 2023 at 04:33:43PM -0400, KenUnix wrote: > I have a question. I am running UNIX System V Release 3.2 AT&T 3B2/400 on a > 3B2/400 SIM. > > I went to use "make" however it is not there only the source: > > bu > defs > doname.c > dosys.c > dyndep.c > files.c > gram.y > main.c > make.mk > misc.c > perror.c > prtmem.c > rules.c > > How can you make "make" using make.mk without make? Just look at make.mk and see what it does and do it by hand. When I've hit stuff like this I'd do yacc gram.y cc -O -o make *.c and hope for the best. If that doesn't work, look at the make.mk file and see what it is hiding.