2007-02-14 01:40:09 +00:00
|
|
|
## Process this file with automake to produce Makefile.in
|
|
|
|
|
|
|
|
INCLUDES = @LIBXML_CFLAGS@
|
|
|
|
|
|
|
|
libexec_PROGRAMS = libvirt_qemud
|
|
|
|
|
|
|
|
libvirt_qemud_SOURCES = qemud.c internal.h protocol.h \
|
|
|
|
driver.c driver.h \
|
|
|
|
dispatch.c dispatch.h \
|
2007-02-14 16:02:40 +00:00
|
|
|
conf.c conf.h \
|
|
|
|
bridge.c bridge.h
|
2007-02-14 01:40:09 +00:00
|
|
|
#-D_XOPEN_SOURCE=600 -D_XOPEN_SOURCE_EXTENDED=1 -D_POSIX_C_SOURCE=199506L
|
|
|
|
libvirt_qemud_CFLAGS = \
|
|
|
|
-I$(top_srcdir)/include -I$(top_builddir)/include $(LIBXML_CFLAGS) \
|
|
|
|
-Werror -Wall -Wextra -DLOCAL_STATE_DIR="\"$(localstatedir)\"" \
|
|
|
|
-DSYSCONF_DIR="\"$(sysconfdir)\""
|
2007-02-14 16:02:40 +00:00
|
|
|
libvirt_qemud_LDFLAGS = $(LIBXML_LIBS) $(SYSFS_LIBS)
|
2007-02-14 01:40:09 +00:00
|
|
|
libvirt_qemud_DEPENDENCIES =
|
|
|
|
libvirt_qemud_LDADD =
|
|
|
|
|