Files
guestfs-inspect/Makefile
Robby Zambito f11569691f Move build target to first target
This makes it so you can just run make to build both the client and the daemon.
2024-03-30 16:18:33 -04:00

9 lines
290 B
Makefile

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`