Move build target to first target

This makes it so you can just run make to build both the client and the daemon.
This commit is contained in:
2024-03-30 16:14:18 -04:00
parent 873ed765f4
commit f11569691f

View File

@@ -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