From 5819bf29e08631477a5466a6a10a5eb77537c453 Mon Sep 17 00:00:00 2001 From: Philipp Klaus Date: Wed, 24 May 2017 23:55:20 +0200 Subject: [PATCH] C Unpacker: Remove math_helpers.{c,h} references --- normalmode/analysis_gui/GUI/runana.sh | 0 normalmode/c_standalone/Makefile.count_events | 2 +- normalmode/c_standalone/Makefile.extract_info | 2 +- normalmode/c_standalone/count_events.c | 1 - normalmode/c_standalone/extract_info.c | 3 +-- 5 files changed, 3 insertions(+), 5 deletions(-) mode change 100755 => 100644 normalmode/analysis_gui/GUI/runana.sh diff --git a/normalmode/analysis_gui/GUI/runana.sh b/normalmode/analysis_gui/GUI/runana.sh old mode 100755 new mode 100644 diff --git a/normalmode/c_standalone/Makefile.count_events b/normalmode/c_standalone/Makefile.count_events index 2a0592b..e4727f5 100644 --- a/normalmode/c_standalone/Makefile.count_events +++ b/normalmode/c_standalone/Makefile.count_events @@ -4,7 +4,7 @@ CC=gcc CFLAGS=-c -Wall -O3 -std=c11 LDFLAGS= -SOURCES=count_events.c hld.c math_helpers.c +SOURCES=count_events.c hld.c OBJECTS=$(SOURCES:.c=.o) EXECUTABLE=count_events diff --git a/normalmode/c_standalone/Makefile.extract_info b/normalmode/c_standalone/Makefile.extract_info index 6104598..0832489 100644 --- a/normalmode/c_standalone/Makefile.extract_info +++ b/normalmode/c_standalone/Makefile.extract_info @@ -4,7 +4,7 @@ CC=gcc CFLAGS=-c -Wall -O3 -std=c11 LDFLAGS= -SOURCES=extract_info.c hld.c math_helpers.c +SOURCES=extract_info.c hld.c OBJECTS=$(SOURCES:.c=.o) EXECUTABLE=extract_info diff --git a/normalmode/c_standalone/count_events.c b/normalmode/c_standalone/count_events.c index 8c47287..dac9af7 100644 --- a/normalmode/c_standalone/count_events.c +++ b/normalmode/c_standalone/count_events.c @@ -7,7 +7,6 @@ //#include //#include -#include "math_helpers.h" #include "count_events.h" #include "hld.h" diff --git a/normalmode/c_standalone/extract_info.c b/normalmode/c_standalone/extract_info.c index 8899582..e7ff482 100644 --- a/normalmode/c_standalone/extract_info.c +++ b/normalmode/c_standalone/extract_info.c @@ -8,8 +8,7 @@ //#include #include -#include "math_helpers.h" -#include "count_events.h" +#include "extract_info.h" #include "hld.h" uint32_t num_events = 0; -- 2.43.0