Skip to content

Commit a695f7e

Browse files
Minor formatting changes
1 parent eb0a67a commit a695f7e

File tree

2 files changed

+13
-20
lines changed

2 files changed

+13
-20
lines changed

Makefile

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
# General Public License for more details.
1717
#
1818

19-
SOURCES = $(filter-out SAM.cpp,$(wildcard *.cpp))
20-
OBJECTS = $(patsubst %.cpp,%.o,$(SOURCES))
19+
SOURCES = $(wildcard *.cpp)
20+
OBJECTS = $(patsubst %.cpp, %.o, $(SOURCES))
2121
HEADERS = $(wildcard *.hpp)
2222

2323
STATIC_LIB = libsmithlab_cpp.a
@@ -37,9 +37,6 @@ endif
3737

3838
all: $(OBJECTS)
3939

40-
%.o: %.cpp %.hpp
41-
$(CXX) $(CXXFLAGS) -c -o $@ $< $(INCLUDEARGS)
42-
4340
%.o: %.cpp %.hpp
4441
$(CXX) $(CXXFLAGS) -c -o $@ $< $(INCLUDEARGS)
4542

htslib_wrapper.hpp

Lines changed: 11 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,19 @@
11
/*
2-
* Part of SMITHLAB_CPP software
2+
* Part of SMITHLAB_CPP software
33
*
4-
* Copyright (C) 2013 University of Southern California and
5-
* Andrew D. Smith
4+
* Copyright (C) 2019 Meng Zhou and Andrew Smith
65
*
7-
* Authors: Meng Zhou, Qiang Song, Andrew Smith
6+
* Authors: Meng Zhou and Andrew Smith
87
*
9-
* This program is free software: you can redistribute it and/or modify
10-
* it under the terms of the GNU General Public License as published by
11-
* the Free Software Foundation, either version 3 of the License, or
12-
* (at your option) any later version.
8+
* This is free software: you can redistribute it and/or modify it
9+
* under the terms of the GNU General Public License as published by
10+
* the Free Software Foundation, either version 3 of the License, or
11+
* (at your option) any later version.
1312
*
14-
* This program is distributed in the hope that it will be useful,
15-
* but WITHOUT ANY WARRANTY; without even the implied warranty of
16-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17-
* GNU General Public License for more details.
18-
*
19-
* You should have received a copy of the GNU General Public License
20-
* along with this program. If not, see <http://www.gnu.org/licenses/>.
13+
* This software is distributed in the hope that it will be useful,
14+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
15+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16+
* General Public License for more details.
2117
*/
2218

2319
#ifndef HTSLIB_WRAPPER_HPP

0 commit comments

Comments
 (0)