FSUDAQ_Qt6/Makefile_test

47 lines
1.5 KiB
Plaintext
Raw Normal View History

2023-04-11 14:16:22 -04:00
########################################################################
#
#
#########################################################################
CC = g++
2023-05-23 14:52:23 -04:00
#COPTS = -fPIC -DLINUX -O2 -std=c++17 -lpthread
COPTS = -fPIC -DLINUX -g -O2 -Wall -std=c++17 -lpthread
2023-04-11 14:16:22 -04:00
CAENLIBS = -lCAENDigitizer
ROOTLIBS = `root-config --cflags --glibs`
OBJS = ClassDigitizer.o OnlineEventBuilder.o
2023-04-11 14:16:22 -04:00
2023-05-26 13:12:00 -04:00
ALL = test test_indep EventBuilder DataGenerator
2023-04-11 14:16:22 -04:00
#########################################################################
all : $(ALL)
clean :
/bin/rm -f $(OBJS) $(ALL)
OnlineEventBuilder.o : OnlineEventBuilder.cpp OnlineEventBuilder.h
$(CC) $(COPTS) -c OnlineEventBuilder.cpp
2023-04-11 14:16:22 -04:00
ClassDigitizer.o : ClassDigitizer.cpp ClassDigitizer.h RegisterAddress.h macro.h ClassData.h
$(CC) $(COPTS) -c ClassDigitizer.cpp
test : test.cpp ClassDigitizer.o OnlineEventBuilder.o
2023-04-11 14:16:22 -04:00
@echo "--------- making test"
$(CC) $(COPTS) -o test test.cpp ClassDigitizer.o OnlineEventBuilder.o $(CAENLIBS) $(ROOTLIBS)
2023-04-11 14:16:22 -04:00
test_indep : test_indep.cpp RegisterAddress.h macro.h
@echo "--------- making test_indep"
$(CC) $(COPTS) -o test_indep test_indep.cpp $(CAENLIBS)
2023-05-17 17:05:27 -04:00
EventBuilder : EventBuilder.cpp ClassData.h
@echo "--------- making EventBuilder"
$(CC) $(COPTS) -o EventBuilder EventBuilder.cpp $(CAENLIBS) $(ROOTLIBS)
2023-05-26 13:12:00 -04:00
DataGenerator : DataGenerator.cpp ClassDigitizer.o OnlineEventBuilder.o
@echo "--------- making DataGenerator"
$(CC) $(COPTS) -o DataGenerator DataGenerator.cpp ClassDigitizer.o OnlineEventBuilder.o $(CAENLIBS)