forked from libvmi/libvmi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.am
46 lines (38 loc) · 1.4 KB
/
Makefile.am
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
## Source directory
SUBDIRS =
AM_CFLAGS = -I$(top_srcdir) $(GLIB_CFLAGS)
AM_CFLAGS += -Wall -Wextra
if DEBUG
AM_CFLAGS += -Werror
AM_CFLAGS += -Wno-missing-field-initializers -Wno-unused-parameter
endif
AM_LDFLAGS = -L$(top_builddir)/libvmi/.libs/
LDADD = -lvmi -lm $(LIBS) $(GLIB_LIBS)
bin_PROGRAMS = vmi-process-list \
vmi-module-list \
vmi-win-guid \
vmi-dump-memory
noinst_PROGRAMS = shm-snapshot-process-list \
map-symbol \
map-addr \
event-example \
msr-event-example \
singlestep-event-example \
interrupt-event-example \
step-event-example \
va-pages \
xen-emulate-response
vmi_process_list_SOURCES = process-list.c
vmi_module_list_SOURCES = module-list.c
vmi_dump_memory_SOURCES = dump-memory.c
vmi_win_guid_SOURCES = win-guid.c win-guid.h
shm_snapshot_process_list_SOURCES = shm-snapshot-process-list.c
map_symbol_SOURCES = map-symbol.c
map_addr_SOURCES = map-addr.c
event_example_SOURCES = event-example.c
msr_event_example_SOURCES = msr-event-example.c
singlestep_event_example_SOURCES = singlestep-event-example.c
interrupt_event_example_SOURCES = interrupt-event-example.c
step_event_example_SOURCES = step-event-example.c
va_pages_SOURCES = va-pages.c
xen_emulate_response_SOURCES = xen-emulate-response.c