19 lines
612 B
Makefile
19 lines
612 B
Makefile
CC = g++
|
|
COPTS = -fPIC -DLINUX -O2 -std=c++17 -lpthread
|
|
CAENLIBS = -lCAEN_FELib
|
|
ROOTLIBS = `root-config --cflags --glibs`
|
|
|
|
all: test test_indep ClassDigitizer2Gen.o influxdb.o
|
|
|
|
test_indep : test_indep.cpp
|
|
$(CC) $(COPTS) -o test_indep test_indep.cpp $(CAENLIBS)
|
|
|
|
test : test.cpp ClassDigitizer2Gen.o influxdb.o
|
|
$(CC) $(COPTS) ClassDigitizer2Gen.o influxdb.o -o test test.cpp $(CAENLIBS) -lcurl
|
|
|
|
ClassDigitizer2Gen.o : ClassDigitizer2Gen.cpp ClassDigitizer2Gen.h Event.h
|
|
$(CC) $(COPTS) -c ClassDigitizer2Gen.cpp $(CAENLIBS)
|
|
|
|
influxdb.o : influxdb.cpp influxdb.h
|
|
$(CC) $(COPTS) -c influxdb.cpp -lcurl
|