SOLARIS_Analysis/Cleopatra/makefile

32 lines
1.3 KiB
Makefile
Raw Normal View History

2023-04-03 16:03:48 -04:00
CC=g++
2024-02-14 19:04:01 -05:00
ALL = Isotope InFileCreator ExtractXSec ExtractXSecFromText PlotTGraphTObjArray FindThetaCM Transfer PlotSimulation
2023-04-10 15:56:31 -04:00
all: $(ALL)
2023-04-03 16:03:48 -04:00
InFileCreator: InFileCreator.C InFileCreator.h ../Cleopatra/ClassIsotope.h ../Cleopatra/constant.h potentials.h
2023-04-03 16:03:48 -04:00
$(CC) InFileCreator.C -o InFileCreator `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`
PlotTGraphTObjArray: PlotTGraphTObjArray.C PlotTGraphTObjArray.h
$(CC) PlotTGraphTObjArray.C -o PlotTGraphTObjArray `root-config --cflags --glibs`
FindThetaCM: FindThetaCM.C FindThetaCM.h ../Cleopatra/ClassHelios.h ../Cleopatra/ClassIsotope.h ../Cleopatra/constant.h
2023-04-03 16:03:48 -04:00
$(CC) FindThetaCM.C -o FindThetaCM `root-config --cflags --glibs`
Transfer: Transfer.C Transfer.h ../Cleopatra/ClassHelios.h ../Cleopatra/ClassIsotope.h ../Cleopatra/constant.h
2023-04-03 16:03:48 -04:00
$(CC) Transfer.C -o Transfer `root-config --cflags --glibs`
PlotSimulation: PlotSimulation.C Check_Simulation.C
2023-04-03 16:03:48 -04:00
$(CC) PlotSimulation.C -o PlotSimulation `root-config --cflags --glibs`
Isotope: ../Cleopatra/ClassIsotope.h ../Cleopatra/Isotope.C
2023-04-03 16:03:48 -04:00
$(CC) Isotope.C -o Isotope
2023-04-10 15:56:31 -04:00
clean:
/bin/rm -f $(ALL)