forked from scanmem/scanmem
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.am
51 lines (41 loc) · 860 Bytes
/
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
47
48
49
50
51
ACLOCAL_AMFLAGS = -I m4
SUBDIRS = po
if ENABLE_GUI
SUBDIRS += gui
endif
AM_CFLAGS = -O2 -g -Wall
lib_LTLIBRARIES = libscanmem.la
libscanmem_la_SOURCES = commands.h \
commands.c \
endianness.c \
ptrace.c \
menu.c \
handlers.h \
handlers.c \
interrupt.h \
list.h \
list.c \
licence.h \
maps.h \
maps.c \
scanmem.h \
scanmem.c \
scanroutines.h \
scanroutines.c \
show_message.h \
show_message.c \
target_memory_info_array.h \
target_memory_info_array.c \
value.h \
value.c
if !WITH_READLINE
libscanmem_la_SOURCES += readline.h \
readline.c
endif
libscanmem_la_LDFLAGS = -version-info 1:0:0
bin_PROGRAMS = scanmem
scanmem_SOURCES = main.c
scanmem_LDADD = libscanmem.la
dist_man_MANS = scanmem.1
dist_doc_DATA = README
EXTRA_DIST = gpl-2.0.txt gpl-3.0.txt