File: Makefile.am

package info (click to toggle)
libvirt-glib 0.0.8-1
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 4,184 kB
  • sloc: ansic: 13,286; sh: 11,269; makefile: 618; python: 125; xml: 95
file content (32 lines) | stat: -rw-r--r-- 688 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32

noinst_PROGRAMS = event-test conn-test

EXTRA_DIST = event-test.py config-demo.py

event_test_CFLAGS = \
		$(WARN_CFLAGS) \
		$(GLIB2_CFLAGS) \
		$(LIBVIRT_CFLAGS) \
		-I$(top_srcdir)
event_test_SOURCES = \
		event-test.c
event_test_LDADD = \
		../libvirt-glib/libvirt-glib-1.0.la \
		$(LIBVIRT_LIBS) \
		$(GLIB2_LIBS)

conn_test_CFLAGS = \
		$(WARN_CFLAGS) \
		$(GLIB2_CFLAGS) \
		$(LIBVIRT_CFLAGS) \
		$(LIBXML2_CFLAGS) \
		-I$(top_srcdir)
conn_test_SOURCES = \
		conn-test.c
conn_test_LDADD = \
		../libvirt-gobject/libvirt-gobject-1.0.la \
		../libvirt-gconfig/libvirt-gconfig-1.0.la \
		../libvirt-glib/libvirt-glib-1.0.la \
		$(LIBVIRT_LIBS) \
		$(GLIB2_LIBS) \
		$(GOBJECT2_LIBS)