-
Notifications
You must be signed in to change notification settings - Fork 9
/
Makefile
executable file
·48 lines (39 loc) · 2.27 KB
/
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
#!/usr/bin/env make
CC=cc
INCLUDE=-I ./src/ext/uthash/src/
## * For -march info on your platform, type: gcc -march=native -Q --help=target (or just compile with -march=native )
## * We include the argument -Wno-unknown-pragmas to suppress clang's lack of support for openmp
## Since we use the gnuism 'override', you don't need to modify this makefile; you can just run: make -j4 CFLAGS=-DATA_STORE_TRIE_LCRS
override CFLAGS += -march=native -std=c99 -O3 -fopenmp -finline-functions -fno-math-errno -fstrict-aliasing -DHASH_FUNCTION=HASH_SAX -DHASH_BLOOM=25 -Wall -Wextra -Winline -Wstrict-aliasing -Wno-unknown-pragmas -Wno-comment -Wno-missing-field-initializers ${INCLUDE}
LDLIBS=-lm #-ltcmalloc_minimal
BIN=bin/
SRC=src/
OBJS=${SRC}/clustercat-array.o ${SRC}/clustercat-cluster.o ${SRC}/clustercat-dbg.o ${SRC}/clustercat-io.o ${SRC}/clustercat-import-class-file.o ${SRC}/clustercat-map.o ${SRC}/clustercat-math.o ${SRC}/clustercat-tokenize.o
includes=${SRC}/$(wildcard *.h)
date:=$(shell date +%F)
machine_type:=$(shell uname -m)
all: ${BIN}/clustercat
.PHONY : all install tar clean
clustercat.h: ${SRC}/clustercat-array.h ${SRC}/clustercat-data.h ${SRC}/clustercat-map.h
${BIN}/clustercat: ${SRC}/clustercat.c ${OBJS}
${CC} -Wl,-s $^ -o $@ ${CFLAGS} ${LDLIBS}
clustercat.c: ${SRC}/clustercat.h ${SRC}/clustercat-cluster.h ${SRC}/clustercat-dbg.h ${SRC}/clustercat-io.h ${SRC}/clustercat-import-class-file.h ${SRC}/clustercat-math.h ${SRC}/clustercat-tokenize.h
install: ${BIN}/clustercat
cp -p ${BIN}/clustercat /usr/bin/ 2>/dev/null || \
mkdir --parents ${HOME}/bin/ && \
cp -p ${BIN}/clustercat ${HOME}/bin/
tar: ${BIN}/clustercat
mkdir clustercat-${date} && \
mkdir clustercat-${date}/bin && \
mkdir clustercat-${date}/src && \
mkdir --parents clustercat-${date}/src/ext/uthash/src && \
cp -a ${BIN}/clustercat clustercat-${date}/bin/ && \
cp -a ${BIN}/clustercat clustercat-${date}/bin/clustercat.${machine_type} && \
cp -a ${SRC}/*.c ${SRC}/*.h clustercat-${date}/src/ && \
cp -a Makefile README.md LICENSE clustercat-${date}/ && \
cp -a ${SRC}/ext/uthash/src/uthash.h clustercat-${date}/src/ext/uthash/src/ && \
tar -cf clustercat-${date}.tar clustercat-${date}/ && \
gzip -9 clustercat-${date}.tar && \
rm -rf clustercat-${date}/
clean:
\rm -f ${BIN}/clustercat ${SRC}/*.o