]> jspc29.x-matter.uni-frankfurt.de Git - radhard.git/commitdiff
Plotting now works with using the same file as noise file.
authorStefan Strohauer <sstrohauer@jspc31.x-matter.uni-frankfurt.de>
Mon, 4 Nov 2013 18:26:01 +0000 (19:26 +0100)
committerStefan Strohauer <sstrohauer@jspc31.x-matter.uni-frankfurt.de>
Mon, 4 Nov 2013 18:26:01 +0000 (19:26 +0100)
ProcessMeasurements/makefile [new file with mode: 0644]

diff --git a/ProcessMeasurements/makefile b/ProcessMeasurements/makefile
new file mode 100644 (file)
index 0000000..f62b80d
--- /dev/null
@@ -0,0 +1,16 @@
+CC=g++
+CFLAGS=-c -g -Wall -std=c++11 `root-config --cflags`
+LDFLAGS=`root-config --glibs`
+CLDFLAGS = -std=c++11 `root-config --cflags --glibs` -lboost_system -lboost_filesystem 
+SOURCES= ProcessMeasurements.C CSVRow.C analyzeRun.C MAPS.C
+OBJECTS=$(subst .cc,.o,$(SOURCES))
+EXECUTABLE=main
+
+all: $(SOURCES) $(EXECUTABLE)
+
+$(EXECUTABLE): $(OBJECTS)
+       $(CC) $(CLDFLAGS) $(OBJECTS) -o $@
+
+
+clean:
+       rm -f $(OBJS)