Index: tools/PlotTempsViaGnuplot/Makefile
===================================================================
--- tools/PlotTempsViaGnuplot/Makefile	(revision 122)
+++ tools/PlotTempsViaGnuplot/Makefile	(revision 122)
@@ -0,0 +1,23 @@
+CC=gcc
+
+
+EXE_OLD_T = plot_old_Trigger_slow_files
+EXE_T = plotTempsViaGnuplot
+EXE_PT = plot_pt100_temps
+
+all: $(EXE_T) $(EXE_PT) $(EXE_OLD_T)
+
+$(EXE_T): $(EXE_T).c
+	$(CC) $(EXE_T).c -o $(EXE_T)
+
+$(EXE_OLD_T): $(EXE_OLD_T).c
+	$(CC) $(EXE_OLD_T).c -o $(EXE_OLD_T)
+
+$(EXE_PT): $(EXE_PT).c
+	$(CC) $(EXE_PT).c -o $(EXE_PT)
+
+	
+clean:
+	@rm -f $(EXE_T)
+	@rm -r $(EXE_PT)
+	@rm -f $(EXE_OLD_T)
