CoMPASS_BinReader/Makefile

25 lines
579 B
Makefile
Raw Permalink Normal View History

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"
$(CC) $(COPTS) -o Bin2Root Bin2Root.cpp $(ROOTLIBS)