From nobody Thu Apr 25 18:18:06 2024 X-Original-To: questions@mlmmj.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mlmmj.nyi.freebsd.org (Postfix) with ESMTP id 4VQPHH2Nw5z5JGb4 for ; Thu, 25 Apr 2024 18:18:19 +0000 (UTC) (envelope-from mail@souji-thenria.net) Received: from alisa.souji-thenria.net (alisa.souji-thenria.net [188.68.37.165]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA512) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4VQPHG5LLLz4WXt; Thu, 25 Apr 2024 18:18:18 +0000 (UTC) (envelope-from mail@souji-thenria.net) Authentication-Results: mx1.freebsd.org; none DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=souji-thenria.net; s=20231116; t=1714069089; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=ScQU2WUQHeVugiwCzON37MKIYSvZC9vppZQMn9FZcxQ=; b=gGkTTmPN2DFy7JHilPYvSkLEAq4i21Yfd80YlJNcbZpxvaSexUqKauxCszAeN9ZoXdE60K lRNWBtYSez6/DEfdivlrmO47aQKnZhcpX/8t3nNlvBqR/RfHMSN3DQ/ZLkpwOwtP4EWn6j TESeTYWRVTwrgrubiAWYEZLVhAVt/lEa1hDCSJzFhZj+Je9bD5XKJgWL4tm3MPxdg93W+w APd8iPeDxmkU2I8v1VNaWkA+a8bhOE6l3PTKdu6N5HbE9UWIURq3LcZs0vtPqiepVETOBt Uge/R6uq1iv76LOS2Dy/RwTIIEwwQJpSeOwbWuzLNaHwT8XO4+cZ2HQaLuDln3jYNEAfjK 49tTsj5FvJ+S32nwcNwFO6c6EepKLmpnkkj7GP4kxgMR8qZJV1GMmm5aSA3+Hqt9vwzw/x U944BFDHcjXI+jkIvqVPYUZzEejYLRQZ+HUiiVRzl+znBd1UEUbjtJwHMLtk9oAnqVauSq yVFepS5VgjdU2lmvfC/C46V1Z19GBcjpbU3Vh47Ui5VORit0h2kx3RROh6mRGCFzad13dl EpiflLqSKojTrpkcBQGR3rAfDEFOU/Nl1fETvbn7O3LoDHCPhPf5+M63FhE8J1TUhT1M8L VIddMYcxvIKT/S8hP2Oe1cCSCvkHM7ND34gnisJIL7puhy8JDt86A= Received: by alisa.souji-thenria.net (OpenSMTPD) with ESMTPSA id 34d6c913 (TLSv1.3:TLS_AES_256_GCM_SHA384:256:NO); Thu, 25 Apr 2024 20:18:09 +0200 (CEST) List-Id: User questions List-Archive: https://lists.freebsd.org/archives/freebsd-questions List-Help: List-Post: List-Subscribe: List-Unsubscribe: X-BeenThere: freebsd-questions@freebsd.org Sender: owner-freebsd-questions@FreeBSD.org Mime-Version: 1.0 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=UTF-8; format=Flowed Date: Thu, 25 Apr 2024 19:18:06 +0100 Message-Id: Cc: Subject: Re: bsd sed / make vs bsd sed / make From: "Souji Thenria" To: "Tomek CEDRO" , "Kyle Evans" X-Mailer: aerc 0.17.0 References: <493f8ca1-75e1-4ae6-8641-5998c53457cb@FreeBSD.org> In-Reply-To: X-Spamd-Bar: ---- X-Rspamd-Pre-Result: action=no action; module=replies; Message is reply to one we originated X-Spamd-Result: default: False [-4.00 / 15.00]; REPLY(-4.00)[]; ASN(0.00)[asn:197540, ipnet:188.68.32.0/20, country:DE] X-Rspamd-Queue-Id: 4VQPHG5LLLz4WXt On Thu Apr 25, 2024 at 6:59 PM BST, Tomek CEDRO wrote: > Well it will not be a port just local git clone bootstrapped per > project. No hardcoded paths to sed luckily :-) Just wondering what are > the best practices to turn BSD make run GNU make a simple bsd only > makefile that would wrap make wall with gmake or something ? Not > really a big problem I can use it with gmake just want to make life > easier for other users :-) Hi Tomek, Wrapping gmake with make would work. You can also create a shell script which runs gmake from inside the project directory. Trying to convert the syntax is probably not worth the effort. Regards, Souji