-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathMakefile
More file actions
21 lines (18 loc) · 707 Bytes
/
Makefile
File metadata and controls
21 lines (18 loc) · 707 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# compiler choice
CC = gcc
all: c
c:
make -C acm/estimators/galaxy_clustering/src all
clean:
rm -rf build/
rm -f acm/estimators/galaxy_clustering/src/*.*o
rm -f acm/estimators/galaxy_clustering/src/fastmodules.c
rm -f acm/estimators/galaxy_clustering/src/fastmodules*.so
rm -f acm/estimators/galaxy_clustering/src/minkowski.c
rm -f acm/estimators/galaxy_clustering/src/minkowski*.so
rm -f acm/estimators/galaxy_clustering/src/*.pyc
rm -f acm/estimators/galaxy_clustering/src/*.exe
rm -f acm/estimators/galaxy_clustering/src/c/*.o
rm -f acm/estimators/galaxy_clustering/src/c/*.exe
rm -f acm/estimators/galaxy_clustering/src/pydive*.so
rm -f acm/estimators/galaxy_clustering/src/pydive.cpp