From 3ee53dca79dd1cb08285ed04a72088653ca7bc17 Mon Sep 17 00:00:00 2001 From: Geoffrey McRae Date: Sat, 25 Nov 2017 23:15:16 +1100 Subject: [PATCH] [client] changed output program name --- client/Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/client/Makefile b/client/Makefile index 253734ce..acd8a5f9 100644 --- a/client/Makefile +++ b/client/Makefile @@ -1,3 +1,4 @@ +BINARY=kvmgfx-client CFLAGS=-g -Og -std=gnu99 -march=native -Wall -Werror -I../common -DDEBUG LDFLAGS=-lrt @@ -16,4 +17,5 @@ LDFLAGS+=`pkg-config --libs libssl openssl` CFLAGS+=`pkg-config --cflags spice-protocol` all: - gcc ${CFLAGS} -o bin/main main.c spice/spice.c ivshmem/ivshmem.c ${LDFLAGS} + mkdir -p bin + gcc ${CFLAGS} -o bin/${BINARY} main.c spice/spice.c ivshmem/ivshmem.c ${LDFLAGS}