From c050b37eb816351420863981cd8de0791b2aeb10 Mon Sep 17 00:00:00 2001 From: "Ryan@SOLARIS_testStation" Date: Mon, 4 Nov 2024 14:25:50 -0500 Subject: [PATCH] update the makefile, so that only InFileCreator is made --- Cleopatra/makefile | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/Cleopatra/makefile b/Cleopatra/makefile index 604bf95..a68fb32 100644 --- a/Cleopatra/makefile +++ b/Cleopatra/makefile @@ -1,6 +1,7 @@ CC=g++ -all: Isotope InFileCreator ExtractXSec ExtractXSecFromText PlotTGraphTObjArray +# all: Isotope InFileCreator ExtractXSec ExtractXSecFromText PlotTGraphTObjArray +all: InFileCreator #Cleopatra: Cleopatra.C ../Simulation/Isotope.h ../Simulation/constant.h potentials.h InFileCreator.h ExtractXSec.h PlotTGraphTObjArray.h # $(CC) Cleopatra.C -o Cleopatra `root-config --cflags --glibs` @@ -8,14 +9,14 @@ all: Isotope InFileCreator ExtractXSec ExtractXSecFromText PlotTGraphTObjArray InFileCreator: InFileCreator.C InFileCreator.h ../Cleopatra/Isotope.h ../Cleopatra/constant.h potentials.h $(CC) InFileCreator.C -o InFileCreator `root-config --cflags --glibs` -ExtractXSec: ExtractXSec.C ExtractXSec.h - $(CC) ExtractXSec.C -o ExtractXSec `root-config --cflags --glibs` +# ExtractXSec: ExtractXSec.C ExtractXSec.h +# $(CC) ExtractXSec.C -o ExtractXSec `root-config --cflags --glibs` -ExtractXSecFromText: ExtractXSecFromText.C ExtractXSec.h - $(CC) ExtractXSecFromText.C -o ExtractXSecFromText `root-config --cflags --glibs` +# ExtractXSecFromText: ExtractXSecFromText.C ExtractXSec.h +# $(CC) ExtractXSecFromText.C -o ExtractXSecFromText `root-config --cflags --glibs` -PlotTGraphTObjArray: PlotTGraphTObjArray.C PlotTGraphTObjArray.h - $(CC) PlotTGraphTObjArray.C -o PlotTGraphTObjArray `root-config --cflags --glibs` +# PlotTGraphTObjArray: PlotTGraphTObjArray.C PlotTGraphTObjArray.h +# $(CC) PlotTGraphTObjArray.C -o PlotTGraphTObjArray `root-config --cflags --glibs` -Isotope: ../Cleopatra/Isotope.h ../Cleopatra/Isotope.C - $(CC) Isotope.C -o Isotope +# Isotope: ../Cleopatra/Isotope.h ../Cleopatra/Isotope.C +# $(CC) Isotope.C -o Isotope