1
0
mirror of git://sourceware.org/git/lvm2.git synced 2025-01-03 05:18:29 +03:00
lvm2/daemons/lvmetad/Makefile
Petr Rockai acf3616b3a Add a skeleton for lvmetad, a test client, and a temporary Makefile to build
them. These are currently mostly for testing the daemon-common code. LVMetaD
functionality is expected to trickle in soon though.
2011-06-14 02:36:38 +00:00

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