14 lines
414 B
Makefile
14 lines
414 B
Makefile
|
CC = g++
|
||
|
COPTS = -fPIC -DLINUX -O2 -std=c++17 -lpthread
|
||
|
CAENLIBS = -lCAEN_FELib
|
||
|
|
||
|
test_indep : test_indep.cpp
|
||
|
$(CC) $(COPTS) -o test_indep test_indep.cpp $(CAENLIBS)
|
||
|
|
||
|
test : test.cpp ClassDigitizer2Gen.o
|
||
|
$(CC) $(COPTS) -o test test.cpp ClassDigitizer2Gen.o $(CAENLIBS)
|
||
|
|
||
|
ClassDigitizer2Gen.o : ClassDigitizer2Gen.cpp ClassDigitizer2Gen.h Parameter.h
|
||
|
$(CC) $(COPTS) -c ClassDigitizer2Gen.cpp $(CAENLIBS)
|
||
|
|