Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions Debug/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
*.o
*.d
featurex
59 changes: 59 additions & 0 deletions Debug/makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
################################################################################
# Automatically-generated file. Do not edit!
################################################################################

-include ../makefile.init

RM := rm -rf

# All of the sources participating in the build are defined here
-include sources.mk
-include src/subdir.mk
-include subdir.mk
-include objects.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

-include ../makefile.defs

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

# All Target
all: featurex

# Tool invocations
featurex: $(OBJS) $(USER_OBJS)
@echo 'Building target: $@'
@echo 'Invoking: GCC C++ Linker'
g++ -DDEBUG -g3 -O0 -L../FrameWave_1.3.1/lib -o "featurex" $(OBJS) $(USER_OBJS) $(LIBS)
@echo 'Finished building target: $@'
@echo ' '

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

.PHONY: all clean dependents
.SECONDARY:

-include ../makefile.targets
8 changes: 8 additions & 0 deletions Debug/objects.mk
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
################################################################################
# Automatically-generated file. Do not edit!
################################################################################

USER_OBJS :=

LIBS := -lboost_system -lboost_thread -lfftw3 -lfwBase -lfwSignal -lpthread

27 changes: 27 additions & 0 deletions Debug/sources.mk
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
################################################################################
# Automatically-generated file. Do not edit!
################################################################################

O_SRCS :=
CPP_SRCS :=
C_UPPER_SRCS :=
C_SRCS :=
S_UPPER_SRCS :=
OBJ_SRCS :=
ASM_SRCS :=
CXX_SRCS :=
C++_SRCS :=
CC_SRCS :=
OBJS :=
C++_DEPS :=
C_DEPS :=
CC_DEPS :=
CPP_DEPS :=
EXECUTABLES :=
CXX_DEPS :=
C_UPPER_DEPS :=

# Every subdirectory with source files must be described here
SUBDIRS := \
src \

60 changes: 60 additions & 0 deletions Debug/src/subdir.mk
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
################################################################################
# Automatically-generated file. Do not edit!
################################################################################

# Add inputs and outputs from these tool invocations to the build variables
CPP_SRCS += \
../src/Array2d_32f.cpp \
../src/Audio.cpp \
../src/AudioQ.cpp \
../src/HashQ.cpp \
../src/Stft.cpp \
../src/TCPServer.cpp \
../src/VAD.cpp \
../src/VIATUtilities.cpp \
../src/ViatFeatureExtractor.cpp \
../src/Wave.cpp \
../src/YapHash.cpp \
../src/melFB.cpp \
../src/parseConfig.cpp

OBJS += \
./src/Array2d_32f.o \
./src/Audio.o \
./src/AudioQ.o \
./src/HashQ.o \
./src/Stft.o \
./src/TCPServer.o \
./src/VAD.o \
./src/VIATUtilities.o \
./src/ViatFeatureExtractor.o \
./src/Wave.o \
./src/YapHash.o \
./src/melFB.o \
./src/parseConfig.o

CPP_DEPS += \
./src/Array2d_32f.d \
./src/Audio.d \
./src/AudioQ.d \
./src/HashQ.d \
./src/Stft.d \
./src/TCPServer.d \
./src/VAD.d \
./src/VIATUtilities.d \
./src/ViatFeatureExtractor.d \
./src/Wave.d \
./src/YapHash.d \
./src/melFB.d \
./src/parseConfig.d


# Each subdirectory must supply rules for building sources it contributes
src/%.o: ../src/%.cpp
@echo 'Building file: $<'
@echo 'Invoking: GCC C++ Compiler'
g++ -DDEBUG -g -I../FrameWave_1.3.1 -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o"$@" "$<"
@echo 'Finished building: $<'
@echo ' '


3 changes: 3 additions & 0 deletions Release/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
*.o
*.d
featurex
2 changes: 1 addition & 1 deletion Release/objects.mk
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@

USER_OBJS :=

LIBS := -lboost_system -lboost_thread -lfftw3 -lfwBase -lfwSignal
LIBS := -lboost_system -lboost_thread -lfftw3 -lfwBase -lfwSignal -lpthread

1 change: 1 addition & 0 deletions src/TCPServer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
#include "VIATUtilities.h" // some helper functions
#include <boost/asio.hpp>
#include <boost/thread.hpp>
#include <iostream>

using boost::asio::ip::tcp;

Expand Down