SOLARIS_QT6_DAQ/Aux/Makefile
2024-07-04 18:30:21 -04:00

14 lines
350 B
Makefile

CC=g++
# CFLAG= -g
CFLAG= -O2
ROOTFLAG=`root-config --cflags --glibs`
all: EventBuilder
EventBuilder: EventBuilder.cpp SolReader.h ../Hit.h
$(CC) $(CFLAG) EventBuilder.cpp -o EventBuilder ${ROOTFLAG}
test: test.cpp ../ClassDigitizer2Gen.o
$(CC) $(CFLAG) test.cpp ../ClassDigitizer2Gen.o -o test -lcurl -lCAEN_FELib -lX11
clean:
-rm EventBuilder