2024-07-18 19:02:22 -04:00
|
|
|
########################################################################
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#########################################################################
|
|
|
|
|
|
|
|
CC = g++
|
|
|
|
|
|
|
|
COPTS = -fPIC -DLINUX -O2 -std=c++17 -lpthread
|
|
|
|
# COPTS = -fPIC -DLINUX -g -O0 -Wall -std=c++17 -lpthread
|
|
|
|
|
|
|
|
ROOTLIBS = `root-config --cflags --glibs`
|
|
|
|
|
|
|
|
ALL = Bin2Root
|
|
|
|
|
|
|
|
#########################################################################
|
|
|
|
|
|
|
|
all : $(ALL)
|
|
|
|
|
|
|
|
clean :
|
|
|
|
/bin/rm -f $(OBJS) $(ALL)
|
|
|
|
|
|
|
|
Bin2Root : Bin2Root.cpp BinReader.h
|
|
|
|
@echo "--------- making Bin2Root"
|
2024-09-14 19:21:24 -04:00
|
|
|
$(CC) $(COPTS) -o Bin2Root Bin2Root.cpp $(ROOTLIBS)
|