-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
30 lines (26 loc) · 713 Bytes
/
Makefile
File metadata and controls
30 lines (26 loc) · 713 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
# Created by Tomas Meszaros (exo at tty dot com, tmeszaro at redhat dot com)
#
# Published under Apache 2.0 license.
# See LICENSE for details.
# Makefile for building APEXPass and generating documentation
# run: $ make build, to build APEXPass
build: clean
cd src; \
./build.sh;
doc:
cd src; \
doxygen Doxyfile
clean:
rm -rf build extracted
rm -rf cmake-build-debug
rm -rf src/apex.log
rm -rf src/apex.out
rm -rf src/apex/build
rm -rf src/apex/cmake-build-debug
rm -rf src/build
rm -rf src/cmake-build-debug
rm -rf src/dg/build
@find . -name '__pycache__' -exec rm -fr {} +
@find . -name '*.pyc' -exec rm -f {} +
@find . -name '*.pyo' -exec rm -f {} +
@find . -name '*.un~' -exec rm -f {} +