source: tools/PlotTempsViaGnuplot/Makefile@ 827

Last change on this file since 827 was 122, checked in by dneise, 15 years ago
Makefile for the 3 plotting routines
File size: 383 bytes
Line 
1CC=gcc
2
3
4EXE_OLD_T = plot_old_Trigger_slow_files
5EXE_T = plotTempsViaGnuplot
6EXE_PT = plot_pt100_temps
7
8all: $(EXE_T) $(EXE_PT) $(EXE_OLD_T)
9
10$(EXE_T): $(EXE_T).c
11 $(CC) $(EXE_T).c -o $(EXE_T)
12
13$(EXE_OLD_T): $(EXE_OLD_T).c
14 $(CC) $(EXE_OLD_T).c -o $(EXE_OLD_T)
15
16$(EXE_PT): $(EXE_PT).c
17 $(CC) $(EXE_PT).c -o $(EXE_PT)
18
19
20clean:
21 @rm -f $(EXE_T)
22 @rm -r $(EXE_PT)
23 @rm -f $(EXE_OLD_T)
Note: See TracBrowser for help on using the repository browser.