Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 09 Jan 2001 16:11:18 -0800 (PST)
From:      John Baldwin <jhb@FreeBSD.org>
To:        Glenn Johnson <gjohnson@nola.srrc.usda.gov>
Cc:        hackers@FreeBSD.org
Subject:   RE: gmake to make
Message-ID:  <XFMail.010109161118.jhb@FreeBSD.org>
In-Reply-To: <20010109174749.A69192@node7.cluster.srrc.usda.gov>

next in thread | previous in thread | raw e-mail | index | archive | help

On 09-Jan-01 Glenn Johnson wrote:
> How can I convert the following gmake syntax into something that
> FreeBSD's make can understand?
> 
> %.x: %.o libtinker.a
>         ${F77} ${LINKFLAGS} -o $@ $^ ${LIBS}
>

.o.x:
        ${F77} ${LINKFLAGS} -o $@ $< libtinker.a ${LIBS}
 
Try that.  My mailer has screwed up the tab I think, so make sure the first
char on the line is a tab.

> Thanks.

-- 

John Baldwin <jhb@FreeBSD.org> -- http://www.FreeBSD.org/~jhb/
PGP Key: http://www.baldwin.cx/~john/pgpkey.asc
"Power Users Use the Power to Serve!"  -  http://www.FreeBSD.org/


To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-hackers" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?XFMail.010109161118.jhb>