|
@@ -1,5 +1,6 @@
|
1
|
1
|
bin_PROGRAMS = asmsh child
|
2
|
2
|
|
|
3
|
+noinst_PROGRAMS = child
|
3
|
4
|
noinst_LIBRARIES= libcheck_asmsh.a
|
4
|
5
|
|
5
|
6
|
libcheck_asmsh_a_SOURCES = mmap_parse.c asm_env.c breakpoints.c compile.c logger.c \
|
|
@@ -7,13 +8,18 @@ libcheck_asmsh_a_SOURCES = mmap_parse.c asm_env.c breakpoints.c compile.c logger
|
7
|
8
|
shell.c shell_cmds.c shell_sym.c \
|
8
|
9
|
shell_cmd_breakpoint.c
|
9
|
10
|
|
|
11
|
+noinst_HEADERS = asmsh.h mmap_parse.h asm_env.h breakpoints.h compile.h logger.h \
|
|
12
|
+ completion.h history.h \
|
|
13
|
+ shell.h shell_cmds.h shell_sym.h syscalls.h
|
|
14
|
+
|
|
15
|
+
|
10
|
16
|
asmsh_SOURCES = asmsh.c $(libcheck_asmsh_a_SOURCES)
|
11
|
17
|
child_SOURCES = child.s
|
12
|
18
|
|
13
|
19
|
asmsh_LDADD=child_bin.o
|
14
|
20
|
asmsh_LDFLAGS=-g -O2
|
15
|
21
|
|
16
|
|
-AM_CFLAGS=-Wall -Werror
|
|
22
|
+AM_CFLAGS=-Wall -Werror -fstack-protector-strong -Wformat -Werror=format-security
|
17
|
23
|
AM_CCASFLAGS=-g -O0
|
18
|
24
|
child_LDFLAGS=-nostdlib
|
19
|
25
|
|