add back the Makefile_test, rename as Makefile_Aux
This commit is contained in:
parent
bfb3228e97
commit
a4b6db4140
50
Makefile_Aux
Normal file
50
Makefile_Aux
Normal file
|
@ -0,0 +1,50 @@
|
||||||
|
########################################################################
|
||||||
|
#
|
||||||
|
#
|
||||||
|
#########################################################################
|
||||||
|
|
||||||
|
CC = g++
|
||||||
|
|
||||||
|
#COPTS = -fPIC -DLINUX -O2 -std=c++17 -lpthread
|
||||||
|
COPTS = -fPIC -DLINUX -g -O2 -Wall -std=c++17 -lpthread
|
||||||
|
|
||||||
|
CAENLIBS = -lCAENDigitizer
|
||||||
|
|
||||||
|
ROOTLIBS = `root-config --cflags --glibs`
|
||||||
|
|
||||||
|
OBJS = ClassDigitizer.o MultiBuilder.o
|
||||||
|
|
||||||
|
ALL = test test_indep DataGenerator EventBuilder DataReader
|
||||||
|
|
||||||
|
#########################################################################
|
||||||
|
|
||||||
|
all : $(ALL)
|
||||||
|
|
||||||
|
clean :
|
||||||
|
/bin/rm -f $(OBJS) $(ALL)
|
||||||
|
|
||||||
|
MultiBuilder.o : MultiBuilder.cpp MultiBuilder.h
|
||||||
|
$(CC) $(COPTS) -c MultiBuilder.cpp
|
||||||
|
|
||||||
|
ClassDigitizer.o : ClassDigitizer.cpp ClassDigitizer.h RegisterAddress.h macro.h ClassData.h
|
||||||
|
$(CC) $(COPTS) -c ClassDigitizer.cpp
|
||||||
|
|
||||||
|
test : test.cpp ClassDigitizer.o
|
||||||
|
@echo "--------- making test"
|
||||||
|
$(CC) $(COPTS) -o test test.cpp ClassDigitizer.o $(CAENLIBS) $(ROOTLIBS)
|
||||||
|
|
||||||
|
test_indep : test_indep.cpp RegisterAddress.h macro.h
|
||||||
|
@echo "--------- making test_indep"
|
||||||
|
$(CC) $(COPTS) -o test_indep test_indep.cpp $(CAENLIBS)
|
||||||
|
|
||||||
|
DataGenerator : DataGenerator.cpp ClassDigitizer.o
|
||||||
|
@echo "--------- making DataGenerator"
|
||||||
|
$(CC) $(COPTS) -o DataGenerator DataGenerator.cpp ClassDigitizer.o $(CAENLIBS)
|
||||||
|
|
||||||
|
DataReader : DataReaderScript.cpp ClassData.h MultiBuilder.o
|
||||||
|
@echo "--------- making DataReader"
|
||||||
|
$(CC) $(COPTS) -o DataReader DataReaderScript.cpp ClassData.h MultiBuilder.o $(CAENLIBS)
|
||||||
|
|
||||||
|
EventBuilder : EventBuilder.cpp ClassData.h MultiBuilder.o
|
||||||
|
@echo "--------- making EventBuilder"
|
||||||
|
$(CC) $(COPTS) -o EventBuilder EventBuilder.cpp MultiBuilder.o $(CAENLIBS) $(ROOTLIBS)
|
Loading…
Reference in New Issue
Block a user