Navigation Menu

Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
marbogusz committed Jan 10, 2016
1 parent 8486de8 commit c6ee774
Show file tree
Hide file tree
Showing 1,315 changed files with 461,043 additions and 0 deletions.
156 changes: 156 additions & 0 deletions .cproject

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions .gitignore
@@ -0,0 +1,3 @@
/Debug
/Release
/.settings
27 changes: 27 additions & 0 deletions .project
@@ -0,0 +1,27 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>paHMM-Tree</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>org.eclipse.cdt.managedbuilder.core.genmakebuilder</name>
<triggers>clean,full,incremental,</triggers>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.cdt.managedbuilder.core.ScannerConfigBuilder</name>
<triggers>full,incremental,</triggers>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.cdt.core.cnature</nature>
<nature>org.eclipse.cdt.core.ccnature</nature>
<nature>org.eclipse.cdt.managedbuilder.core.managedBuildNature</nature>
<nature>org.eclipse.cdt.managedbuilder.core.ScannerConfigNature</nature>
</natures>
</projectDescription>
59 changes: 59 additions & 0 deletions Makefile
@@ -0,0 +1,59 @@
RM := rm -rf

SUBDIRS := \
src/models \
src \
src/hmm \
src/heuristics \
src/core \

CC=g++
INCDIR1 = $(CURDIR)/src
INCDIR2 = $(CURDIR)
INC=$(INCDIR1) $(INCDIR2)
INC_PAR=$(foreach d, $(INC), -I$d)
CPPFLAGS=$(INC_PAR) -O3 -c -fmessage-length=0 -std=c++11 -msse2 -mfpmath=sse

-include src/models/subdir.mk
-include src/hmm/subdir.mk
-include src/heuristics/subdir.mk
-include src/core/subdir.mk
-include src/subdir.mk

ifneq ($(MAKECMDGOALS),clean)
ifneq ($(strip $(C++_DEPS)),)
-include $(C++_DEPS)
endif
ifneq ($(strip $(C_DEPS)),)
-include $(C_DEPS)
endif
ifneq ($(strip $(CC_DEPS)),)
-include $(CC_DEPS)
endif
ifneq ($(strip $(CPP_DEPS)),)
-include $(CPP_DEPS)
endif
ifneq ($(strip $(CXX_DEPS)),)
-include $(CXX_DEPS)
endif
ifneq ($(strip $(C_UPPER_DEPS)),)
-include $(C_UPPER_DEPS)
endif
endif


# Add inputs and outputs from these tool invocations to the build variables

# All Target
all: paHMMtree

# Tool invocations
paHMMtree: $(OBJS) $(USER_OBJS)
g++ -o "paHMM-tree" $(OBJS) $(USER_OBJS) $(LIBS)

# Other Targets
clean:
-$(RM) $(C++_DEPS)$(OBJS)$(C_DEPS)$(CC_DEPS)$(CPP_DEPS)$(EXECUTABLES)$(CXX_DEPS)$(C_UPPER_DEPS) paHMMtree

.PHONY: all clean dependents
.SECONDARY:

0 comments on commit c6ee774

Please sign in to comment.