forked from smithlabcode/smithlab_cpp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
53 lines (43 loc) · 1.33 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
49
50
51
52
53
# Makefile from smithlab_cpp C++ code library
#
# Copyright (C) 2010-2019 Andrew D. Smith
#
# Authors: Andrew D. Smith
#
# This is free software: you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This software is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# General Public License for more details.
# ADS: this Makefile will be squashed by any created using autotools
# configure script, if run in the directory containing this file.
SOURCES = $(wildcard *.cpp)
OBJECTS = $(patsubst %.cpp, %.o, $(SOURCES))
HEADERS = $(wildcard *.hpp)
REQUIRES_HTSLIB = htslib_wrapper_deprecated.o htslib_wrapper.o
ifndef HAVE_HTSLIB
NO_HTSLIB := $(filter-out $(REQUIRES_HTSLIB), $(OBJECTS))
OBJECTS = $(NO_HTSLIB)
endif
STATIC_LIB = libsmithlab_cpp.a
CXX = g++
CXXFLAGS = -Wall -std=c++11
OPTFLAGS = -O3
DEBUGFLAGS = -g
ifdef DEBUG
CXXFLAGS += $(DEBUGFLAGS)
else
CXXFLAGS += $(OPTFLAGS)
endif
all: $(OBJECTS) static
%.o: %.cpp %.hpp
$(CXX) $(CXXFLAGS) -c -o $@ $< $(INCLUDEARGS)
static: $(OBJECTS)
ar cr $(STATIC_LIB) $^
clean:
@-rm -f *.o *.a *~
.PHONY: clean