Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- COMPILER_OPT = -O3
- all: extract_timestamps
- extract_timestamps: extract_timestamps.c filename_treatment.o basic_analysis.o collection.o \
- read_lecroy_file.o read_tek_file.o stamp_handling.o treat_lecroy_file.o \
- treat_tek_file.o save_timestamps.o injection_statistics.o calc_time_stamp.o \
- peak_finding.o get_timestamps.o time_ext.h
- gcc $(COMPILER_OPT) -o extract_timestamps extract_timestamps.c filename_treatment.o \
- basic_analysis.o collection.o read_lecroy_file.o read_tek_file.o stamp_handling.o \
- treat_lecroy_file.o treat_tek_file.o save_timestamps.o injection_statistics.o \
- calc_time_stamp.o peak_finding.o get_timestamps.o; chmod go+rx extract_timestamps -lm
- get_timestamps.o: get_timestamps.c time_ext.h
- gcc $(COMPILER_OPT) -c get_timestamps.c -lm
- peak_finding.o: peak_finding.c time_ext.h
- gcc $(COMPILER_OPT) -c -o peak_finding.o peak_finding.c -lm
- calc_time_stamp.o: calc_time_stamp.c time_ext.h
- gcc $(COMPILER_OPT) -c -o calc_time_stamp.o calc_time_stamp.c -lm
- injection_statistics.o: injection_statistics.c time_ext.h
- gcc $(COMPILER_OPT) -c -o injection_statistics.o injection_statistics.c -lm
- save_timestamps.o: save_timestamps.c time_ext.h
- gcc $(COMPILER_OPT) -c -o save_timestamps.o save_timestamps.c -lm
- filename_treatment.o: filename_treatment.c time_ext.h
- gcc $(COMPILER_OPT) -c -o filename_treatment.o filename_treatment.c -lm
- basic_analysis.o: basic_analysis.c time_ext.h
- gcc $(COMPILER_OPT) -c -o basic_analysis.o basic_analysis.c -lm
- collection.o: collection.c time_ext.h
- gcc $(COMPILER_OPT) -c -o collection.o collection.c -lm
- read_lecroy_file.o: read_lecroy_file.c time_ext.h
- gcc $(COMPILER_OPT) -c -o read_lecroy_file.o read_lecroy_file.c -lm
- read_tek_file.o: read_tek_file.c time_ext.h
- gcc $(COMPILER_OPT) -c -o read_tek_file.o read_tek_file.c -lm
- stamp_handling.o: stamp_handling.c time_ext.h
- gcc $(COMPILER_OPT) -c -o stamp_handling.o stamp_handling.c -lm
- treat_lecroy_file.o: treat_lecroy_file.c time_ext.h
- gcc $(COMPILER_OPT) -c -o treat_lecroy_file.o treat_lecroy_file.c -lm
- treat_tek_file.o: treat_tek_file.c time_ext.h
- gcc $(COMPILER_OPT) -c -o treat_tek_file.o treat_tek_file.c -lm
- clean:
- rm filename_treatment.o basic_analysis.o collection.o \
- read_lecroy_file.o stamp_handling.o treat_lecroy_file.o save_timestamps.o \
- injection_statistics.o calc_time_stamp.o peak_finding.o \
- read_tek_file.o treat_tek_file.o \
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement