blob: 3b0fbd7182a99243531298a120525e52fe12741b (
plain)
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
|
# $ make -f Makefile-local
DECODE_OBJS = pcode.o decode.o decode0.o decode1.o decode2.o decode_fields32.o decode_scratchpad.o encodings_dec.o
FORMAT_OBJS = format.o encodings_fmt.o operations.o sysregs_gen.o sysregs_fmt_gen.o regs.o
HEADERS = decode.h decode1.h decode2.h format.h pcode.h operations.h sysregs.h decode_fields32.h encodings_dec.h encodings_fmt.h regs.h
#CFLAGS = -g -Wunused
CFLAGS = -Os
#CFLAGS = -g -Wpedantic
#CFLAGS = -ofast
#$(info $(GENERATED_OBJECTS))
.PHONY: all clean
all: libdecode.a libformat.a gofer.so test
%.o: %.c $(HEADERS)
gcc -c $(CFLAGS) $< -o $@
libdecode.a: $(DECODE_OBJS)
ar rvs libdecode.a $(DECODE_OBJS)
libformat.a: $(FORMAT_OBJS)
ar rvs libformat.a $(FORMAT_OBJS)
#------------------------------------------------------------------------------
# test tools
#------------------------------------------------------------------------------
gofer.so: gofer.c libdecode.a
gcc $(CFLAGS) \
libdecode.a libformat.a \
-shared -o gofer.so gofer.c \
-Wl,-headerpad_max_install_names
#install_name_tool -change libcapstone.3.dylib gofer.so
#install_name_tool -add_rpath `pwd` gofer.so
test: test.c libdecode.a
gcc $(CFLAGS) test.c libdecode.a libformat.a -o test
#------------------------------------------------------------------------------
#
#------------------------------------------------------------------------------
clean:
rm -f *.o *.so *.a test
rm -rf gofer.so.dSYM test.dSYM
|