add extension to convert and temporal unify multiple raw files with different measruemtn frequencies. to BE DEBUGGED

This commit is contained in:
Mario Fink
2020-02-17 17:24:06 +00:00
parent fe5aae4e83
commit 494c0bc6b1
15 changed files with 5600 additions and 2 deletions

View File

@@ -4,13 +4,18 @@ SHELL:=/bin/bash
RAW = ../raw/
SRC = src/
LIB = lib/
EXE = eatraw
CCC = g++ -std=c++11
OPT = -O3 -Wall -mavx -mno-tbm -mf16c -mno-f16c
# build executable
$(EXE) : $(SRC)main.cpp $(SRC)raweat.hpp $(SRC)half_precision_floating_point.hpp
$(EXE) : $(SRC)main.cpp $(LIB)raweat.hpp
$(CCC) $(OPT) $< -o $@
# build target for conversion set of .raw files
eatall : $(SRC)eatall.cpp $(LIB)raweat.hpp
$(CCC) $(OPT) $< -o $@
# remove executable