mirror of
git://sourceware.org/git/lvm2.git
synced 2025-01-03 05:18:29 +03:00
acf3616b3a
them. These are currently mostly for testing the daemon-common code. LVMetaD functionality is expected to trickle in soon though.
27 lines
956 B
Makefile
27 lines
956 B
Makefile
#
|
|
# WARNING
|
|
#
|
|
# This is a temporary Makefile. You need to edit the IPATH/LPATH variables to
|
|
# point to build-dir of LVM2. You may then just run "make" to build the lvmetad
|
|
# binary and the test client.
|
|
#
|
|
|
|
SHARED = ../common/daemon-shared.c
|
|
CLIENT = ../common/daemon-client.c $(SHARED)
|
|
SERVER = ../common/daemon-server.c $(SHARED)
|
|
SHARED_H = ../common/daemon-shared.h
|
|
CLIENT_H = ../common/daemon-client.h $(SHARED_H)
|
|
SERVER_H = ../common/daemon-server.h $(SHARED_H)
|
|
|
|
LIBS = -ldevmapper -lpthread
|
|
IPATH = -I../common -I/srv/build/lvm2/cvs-lvmetad/default/include
|
|
LPATH = -L/srv/build/lvm2/cvs-lvmetad/default/libdm
|
|
|
|
all: testclient lvmetad
|
|
|
|
testclient: testclient.c $(CLIENT_H) $(CLIENT)
|
|
gcc -g testclient.c $(CLIENT) $(IPATH) $(LPATH) $(LIBS) -o testclient
|
|
|
|
lvmetad: lvmetad-core.c ../common/daemon-server.c ../common/daemon-server.h ../common/daemon-shared.h ../common/daemon-shared.c
|
|
gcc -g lvmetad-core.c $(SERVER) $(IPATH) $(LPATH) $(LIBS) -o lvmetad
|