-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #19 from karel-brinda/logupdates
Ococo 0.1.2
- Loading branch information
Showing
43 changed files
with
1,740 additions
and
1,947 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
BasedOnStyle: Google | ||
Language: Cpp | ||
Standard: Cpp11 | ||
AlignConsecutiveAssignments: true | ||
SortIncludes: true | ||
UseTab: Never | ||
IndentWidth: 4 | ||
IndentCaseLabels: true | ||
NamespaceIndentation: None |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
{ | ||
"configurations": [ | ||
{ | ||
"name": "Mac", | ||
"includePath": ["/usr/include"], | ||
"browse" : { | ||
"limitSymbolsToIncludedHeaders" : true, | ||
"databaseFilename" : "" | ||
} | ||
}, | ||
{ | ||
"name": "Linux", | ||
"includePath": ["/usr/include"], | ||
"browse" : { | ||
"limitSymbolsToIncludedHeaders" : true, | ||
"databaseFilename" : "" | ||
} | ||
}, | ||
{ | ||
"name": "Win32", | ||
"includePath": ["c:/Program Files (x86)/Microsoft Visual Studio 14.0/VC/include"], | ||
"browse" : { | ||
"limitSymbolsToIncludedHeaders" : true, | ||
"databaseFilename" : "" | ||
} | ||
} | ||
], | ||
"clang_format" : { | ||
"style" : "file", | ||
"fallback-style" : "LLVM", | ||
"sort-includes" : false | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
// Place your settings in this file to overwrite default and user settings. | ||
{ | ||
"editor.tabSize": 4 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
// See https://go.microsoft.com/fwlink/?LinkId=733558 | ||
// for the documentation about the tasks.json format | ||
"version": "0.1.0", | ||
"command": "make", | ||
"isShellCommand": true, | ||
"args": [], | ||
"showOutput": "always" | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
CXX ?= g++ | ||
CXXFLAGS = -std=c++11 -Wall -Wextra -Wno-missing-field-initializers -Wshadow -g -O2 | ||
LIBS = -lm -lz -lpthread | ||
|
||
PREFIX = $(DESTDIR)/usr/local | ||
BINDIR = $(PREFIX)/bin | ||
MANDIR = $(PREFIX)/share/man/man1 | ||
MANPAGE = ococo.1 | ||
|
||
export CXX | ||
export CXXFLAGS | ||
|
||
.PHONY: all clean install ococo | ||
|
||
all: ococo | ||
|
||
install: ococo | ||
install ococo $(BINDIR)/ococo | ||
install $(MANPAGE) $(MANDIR)/$(MANPAGE) | ||
|
||
ococo: | ||
$(MAKE) -C ./ext/htslib lib-static | ||
$(MAKE) -C ./src | ||
|
||
$(CXX) $(CXXFLAGS) $(DFLAGS) ./src/*.o -o $@ -L. $(LIBS) ./ext/htslib/libhts.a | ||
|
||
ext/htslib/libhts.a: | ||
$(MAKE) -C ext/htslib lib-static | ||
|
||
clean: | ||
$(MAKE) -C ext/htslib clean | ||
$(MAKE) -C src clean | ||
rm ococo |
Oops, something went wrong.