patches and low-level development discussion
 help / color / mirror / code / Atom feed
From: "Cole Helbling" <cole.e.helbling@outlook.com>
To: "Alyssa Ross" <hi@alyssa.is>, <devel@spectrum-os.org>
Subject: Re: [PATCH ucspi-vsock] Makefile: link object files instead of source files
Date: Wed, 10 Mar 2021 12:50:05 -0800	[thread overview]
Message-ID: <SJ0PR03MB5581C57884D163F64EC88AECB3919@SJ0PR03MB5581.namprd03.prod.outlook.com> (raw)
In-Reply-To: <20210310204555.20725-1-hi@alyssa.is>

On Wed Mar 10, 2021 at 12:45 PM PST, Alyssa Ross wrote:
> Previously this would (I assume) needlessly recompile vsockserver.c
> and vsockclient.c when Make has already automatically compiled those.
>
> GNU Make has an automatic variable, $+, that we could use here, but
> currently the Makefile is portable, and it would be a shame to require
> GNU Make just for that.
> ---
> Makefile | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/Makefile b/Makefile
> index b931c89..4f11b64 100644
> --- a/Makefile
> +++ b/Makefile
> @@ -19,9 +19,9 @@ install: vsockclient vsockserver
> .PHONY: install
>  
> vsockclient: vsockclient.o env.o log.o util.o vsock.o
> - $(CC) $(LDFLAGS) -o vsockclient vsockclient.c env.o log.o util.o
> vsock.o $(LDLIBS)
> + $(CC) $(LDFLAGS) -o vsockclient vsockclient.o env.o log.o util.o
> vsock.o $(LDLIBS)
> vsockserver: vsockserver.o env.o log.o util.o vsock.o
> - $(CC) $(LDFLAGS) -o vsockserver vsockserver.c env.o log.o util.o
> vsock.o $(LDLIBS)
> + $(CC) $(LDFLAGS) -o vsockserver vsockserver.o env.o log.o util.o
> vsock.o $(LDLIBS)
>  
> vsockclient.o: env.h log.h util.h vsock.h
> vsockserver.o: env.h log.h util.h vsock.h
> --
> 2.30.0

Whee, one character fixes!

Reviewed-by: Cole Helbling <cole.e.helbling@outlook.com>

      reply	other threads:[~2021-03-10 20:51 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-03-10 20:45 Alyssa Ross
2021-03-10 20:50 ` Cole Helbling [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=SJ0PR03MB5581C57884D163F64EC88AECB3919@SJ0PR03MB5581.namprd03.prod.outlook.com \
    --to=cole.e.helbling@outlook.com \
    --cc=devel@spectrum-os.org \
    --cc=hi@alyssa.is \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://spectrum-os.org/git/crosvm
	https://spectrum-os.org/git/doc
	https://spectrum-os.org/git/mktuntap
	https://spectrum-os.org/git/nixpkgs
	https://spectrum-os.org/git/spectrum
	https://spectrum-os.org/git/ucspi-vsock
	https://spectrum-os.org/git/www

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).