forked from cooljeanius/bap
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile.am
More file actions
32 lines (23 loc) · 742 Bytes
/
Makefile.am
File metadata and controls
32 lines (23 loc) · 742 Bytes
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
ACLOCAL_AMFLAGS = -I m4 --install
# Work around buggy Debian ocaml patch
# See http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=678577
export OCAML_COMPAT='c'
if HAVE_PIN
PINTRACES=pintraces
endif
BAPDIRS=libasmir ocaml utils tests $(PINTRACES)
SUBDIRS=batteries zarith-1.0 ounit pcre-ocaml ocamlgraph-1.8 objsize-0.16 libtracewrap VEX $(BAPDIRS)
test: all
$(MAKE) -C tests test
install-intentional-failure:
@echo "BAP does not support the install target"
@false
.PHONY: cscope-local install-intentional-failure
cscope-local:
cscope -b `find . -name "*.[ch]" -or -name "*.hh" -or -name "*.cc" -or -name "*.cpp"`
.PHONY: bap-clean
bap-clean:
for d in $(BAPDIRS); do $(MAKE) -C $$d clean; done
if HAVE_ETAGS
all-local: tags
endif