From owner-freebsd-questions@FreeBSD.ORG Fri Sep 17 00:35:04 2010 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5C994106566C for ; Fri, 17 Sep 2010 00:35:04 +0000 (UTC) (envelope-from freebsd-questions@m.gmane.org) Received: from lo.gmane.org (lo.gmane.org [80.91.229.12]) by mx1.freebsd.org (Postfix) with ESMTP id 156648FC08 for ; Fri, 17 Sep 2010 00:35:03 +0000 (UTC) Received: from list by lo.gmane.org with local (Exim 4.69) (envelope-from ) id 1OwOur-0001lk-Fg for freebsd-questions@freebsd.org; Fri, 17 Sep 2010 02:35:01 +0200 Received: from 93-141-120-143.adsl.net.t-com.hr ([93.141.120.143]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 17 Sep 2010 02:35:01 +0200 Received: from ivoras by 93-141-120-143.adsl.net.t-com.hr with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 17 Sep 2010 02:35:01 +0200 X-Injected-Via-Gmane: http://gmane.org/ To: freebsd-questions@freebsd.org From: Ivan Voras Date: Fri, 17 Sep 2010 02:34:50 +0200 Lines: 26 Message-ID: References: Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Complaints-To: usenet@dough.gmane.org X-Gmane-NNTP-Posting-Host: 93-141-120-143.adsl.net.t-com.hr User-Agent: Mozilla/5.0 (X11; U; FreeBSD amd64; en-US; rv:1.9.1.9) Gecko/20100620 Thunderbird/3.0.4 In-Reply-To: Subject: Re: Need bsd make for AIX X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Sep 2010 00:35:04 -0000 On 09/16/10 08:58, srividya.k@tcs.com wrote: > Hi > Is there any BSD make versions available for AIX platform? > We require the make utility of BSD to compile few source programs. > > Is there any make utility compatible with AIX? Could you please give us > the URL where we can get the same? FreeBSD's make is an integral part of the FreeBSD file system. It is not created to be compatible across systems, but it is also not created to prevent this kind of porting. With a command like: svn co http://svn.freebsd.org/base/head/usr.bin/make you can fetch the sources for the BSD make. If you have a gcc compiler installed you can compile the BSD make with a command like: gcc '-DDEFSHELLNAME="sh"' -o make *.c Note that the Makefile included with BSD make is in BSD make format so you need to bootstrap it like in the above command; the quotes around -D are needed. There is absolutely no guarantee this will work on your system.