forked from radare/spp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
48 lines (36 loc) · 826 Bytes
/
Makefile
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
PREFIX?=/usr
BINDIR=${DESTDIR}${PREFIX}/bin
INSTALL_BIN=install -m 0755
OBJ=spp.o main.o r_api.o
ODF=$(subst .o,.d,$(OBJ))
BIN=spp
CFLAGS?=-Wall -O2
CFLAGS+=-fvisibility=hidden
all: ${BIN}
config.h:
cp config.def.h config.h
${BIN}: config.h ${OBJ}
${CC} ${LDFLAGS} -o ${BIN} ${OBJ}
r2lib: config.h
${CC} -DUSE_R2=1 -c ${CFLAGS} ${LDFLAGS} -o spp.o spp.c
symlinks:
ln -s ${BIN} acr
ln -s ${BIN} cpp
ln -s ${BIN} pod
ln -s ${BIN} sh
test:
@for a in t/*spp* ; do \
printf "Testing $$a... " ; \
./spp -tspp -o out.txt $$a ; \
if [ -z "`cat out.txt | grep BUG`" ]; then echo ok ; else echo oops ; fi ; \
cat out.txt | grep BUG ; \
rm -f out.txt ; \
true ; \
done
install:
${INSTALL_BIN} ${BIN} ${BINDIR}
uninstall:
rm -f ${BINDIR}/${BIN}
clean:
-rm -f ${BIN} ${OBJ} ${ODF}
-include ${ODF}