From f11569691fe1cfdba2c8d1f1505d7473455f1f14 Mon Sep 17 00:00:00 2001 From: Robby Zambito Date: Sat, 30 Mar 2024 16:14:18 -0400 Subject: [PATCH] Move build target to first target This makes it so you can just run make to build both the client and the daemon. --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 201ef07..bcd71c1 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,8 @@ +build: daemon client + daemon: gcc -ggdb3 -Wall guestfs-inspectd.c libguestfs-inspect.c -o guestfs-inspectd `pkg-config libguestfs libczmq --cflags --libs` client: gcc -ggdb3 -Wall guestfs-inspect.c libguestfs-inspect.c -o guestfs-inspect `pkg-config libguestfs libczmq --cflags --libs` -build: daemon client