aboutsummaryrefslogtreecommitdiff
path: root/src/Makefile
diff options
context:
space:
mode:
authortlatorre <tlatorre@uchicago.edu>2019-05-23 11:22:15 -0400
committertlatorre <tlatorre@uchicago.edu>2019-05-23 11:22:15 -0400
commitf332b293430d5641575917686d7dc128c309acf5 (patch)
treec775fc4b94d7c2ad5812bc1c125d92c2fc7c8772 /src/Makefile
parent3ecd79253ca96645cc670b3e0ad7ee03d1bb9161 (diff)
downloadsddm-f332b293430d5641575917686d7dc128c309acf5.tar.gz
sddm-f332b293430d5641575917686d7dc128c309acf5.tar.bz2
sddm-f332b293430d5641575917686d7dc128c309acf5.zip
add zdab-cat
This commit adds a new program called zdab-cat which is kind of like fit, but just produces the YAML output without actually fitting anything.
Diffstat (limited to 'src/Makefile')
-rw-r--r--src/Makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/Makefile b/src/Makefile
index f1b4f0d..bd77dfb 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -3,7 +3,7 @@ release_hdr := $(shell sh -c './mkreleasehdr.sh')
CFLAGS=-fdiagnostics-color -O2 -Wall -g -DSWAP_BYTES
LDLIBS=-fdiagnostics-color -lm -lgsl -lgslcblas -lnlopt_cxx -lstdc++
-all: test test-vector test-likelihood fit test-charge test-path calculate-csda-range test-time-pdf test-zebra test-find-peaks
+all: test test-vector test-likelihood fit test-charge test-path calculate-csda-range test-time-pdf test-zebra test-find-peaks zdab-cat
Makefile.dep:
-$(CC) -MM *.c > Makefile.dep
@@ -34,7 +34,9 @@ test-find-peaks: test-find-peaks.o zebra.o likelihood.o pmt.o vector.o misc.o mu
calculate-csda-range: calculate-csda-range.o
+zdab-cat: zdab-cat.o zebra.o pmt.o vector.o misc.o zdab_utils.o pack2b.o db.o dqxx.o dict.o siphash.o release.o dc.o sort.o util.o
+
clean:
- rm -f *.o calculate_limits test test-vector test-likelihood fit test-charge test-path calculate-csda-range test-time-pdf test-zebra test-find-peaks Makefile.dep
+ rm -f *.o calculate_limits test test-vector test-likelihood fit test-charge test-path calculate-csda-range test-time-pdf test-zebra test-find-peaks Makefile.dep zdab-cat
.PHONY: all clean