From: Stefan Strohauer Date: Mon, 4 Nov 2013 18:26:01 +0000 (+0100) Subject: Plotting now works with using the same file as noise file. X-Git-Url: https://jspc29.x-matter.uni-frankfurt.de/git/?a=commitdiff_plain;h=38fe81610a38bc45cebb89f416c2942e90112653;p=radhard.git Plotting now works with using the same file as noise file. --- diff --git a/ProcessMeasurements/makefile b/ProcessMeasurements/makefile new file mode 100644 index 0000000..f62b80d --- /dev/null +++ b/ProcessMeasurements/makefile @@ -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)