6e47f12118
This reverts commit 79abec9038
.
The problem will not be applicable in new protocol, where vchan
connection is directly between VMs, so there is no longer two connected
qrexec-clients - always one end of data flow in qrexec-client is vchan,
which provide information about amount of data to read or buffer
space to write (lack of the later in case of pipes was a cause of the
original problem).
13 lines
418 B
Makefile
13 lines
418 B
Makefile
CC=gcc
|
|
CFLAGS+=-I. -g -Wall -Wextra -Werror -pie -fPIC `pkg-config --cflags vchan-$(BACKEND_VMM)`
|
|
LIBS=`pkg-config --libs vchan-$(BACKEND_VMM)` -lqrexec-utils
|
|
|
|
|
|
all: qrexec-daemon qrexec-client
|
|
qrexec-daemon: qrexec-daemon.o
|
|
$(CC) -pie -g -o qrexec-daemon qrexec-daemon.o $(LIBS)
|
|
qrexec-client: qrexec-client.o
|
|
$(CC) -pie -g -o qrexec-client qrexec-client.o $(LIBS)
|
|
clean:
|
|
rm -f *.o *~ qrexec-daemon qrexec-client
|