Revision 8c40ff8c8d774941b520ba9e2a0ad9e1fdf1ce11 authored by Prashant Pandey on 01 August 2017, 01:15:07 UTC, committed by Prashant Pandey on 01 August 2017, 01:15:07 UTC
1 parent 8760147
Makefile
TARGETS=main kmer_query kmer_inner_prod
ifdef D
DEBUG=-g
OPT=
else
DEBUG=
OPT=-Ofast
endif
ifdef NH
ARCH=
else
ARCH=-msse4.2 -D__SSE4_2_
endif
ifdef P
PROFILE=-pg -no-pie # for bug in gprof.
endif
CXX = g++ -std=c++11
CC = g++ -std=c++11
LD= g++ -std=c++11
CXXFLAGS = -Wall $(DEBUG) $(PROFILE) $(OPT) $(ARCH) -m64 -I. -Wno-unused-result -Wno-strict-aliasing -Wno-unused-function
LDFLAGS = $(DEBUG) $(PROFILE) $(OPT) -lpthread -lssl -lcrypto -lboost_system -lboost_thread -lm -lbz2 -lz
#
# declaration of dependencies
#
all: $(TARGETS)
# dependencies between programs and .o files
main: main.o murmurHash3.o hashutil.o threadsafe-gqf/gqf.o
kmer_query: kmer_query.o hashutil.o threadsafe-gqf/gqf.o
kmer_inner_prod: kmer_inner_prod.o hashutil.o threadsafe-gqf/gqf.o
# dependencies between .o files and .h files
main.o: threadsafe-gqf/gqf.h hashutil.h chunk.h kmer.h reader.h
kmer_query.o: threadsafe-gqf/gqf.h hashutil.h chunk.h kmer.h
kmer_inner_prod.o: threadsafe-gqf/gqf.h hashutil.h
hashutil.o: hashutil.h
murmurHash3.o: murmurHash3.h
# dependencies between .o files and .cc (or .c) files
%.o: %.cc
threadsafe-gqf/gqf.o: threadsafe-gqf/gqf.c threadsafe-gqf/gqf.h
#
# generic build rules
#
$(TARGETS):
$(LD) $^ $(LDFLAGS) -o $@
%.o: %.cc
$(CXX) $(CXXFLAGS) $(INCLUDE) $< -c -o $@
%.o: %.c
$(CC) $(CXXFLAGS) $(INCLUDE) $< -c -o $@
clean:
rm -f *.o threadsafe-gqf/gqf.o $(TARGETS)
Computing file changes ...