Makefile.am 747 字节
Newer Older
D
Daniel P. Berrange 已提交
1 2 3 4 5 6 7 8 9
## 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 \
10
                conf.c conf.h \
11 12
                bridge.c bridge.h \
                iptables.c iptables.h
D
Daniel P. Berrange 已提交
13 14 15
#-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) \
16
        -Wall -Wextra -DLOCAL_STATE_DIR="\"$(localstatedir)\"" \
D
Daniel P. Berrange 已提交
17
        -DSYSCONF_DIR="\"$(sysconfdir)\""
18
libvirt_qemud_LDFLAGS = $(LIBXML_LIBS) $(SYSFS_LIBS)
D
Daniel P. Berrange 已提交
19 20 21
libvirt_qemud_DEPENDENCIES =
libvirt_qemud_LDADD =