35 lines
1.4 KiB
Makefile
35 lines
1.4 KiB
Makefile
CC=g++
|
|
|
|
ALL = Isotope InFileCreator ExtractXSec ExtractXSecFromText PlotTGraphTObjArray FindThetaCM Transfer PlotSimulation IsotopeShort
|
|
|
|
all: $(ALL)
|
|
|
|
InFileCreator: InFileCreator.C InFileCreator.h ../Cleopatra/ClassIsotope.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`
|
|
|
|
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
|
|
$(CC) FindThetaCM.C -o FindThetaCM `root-config --cflags --glibs`
|
|
|
|
Transfer: Transfer.C Transfer.h ../Cleopatra/ClassHelios.h ../Cleopatra/ClassIsotope.h ../Cleopatra/constant.h
|
|
$(CC) Transfer.C -o Transfer `root-config --cflags --glibs`
|
|
|
|
PlotSimulation: PlotSimulation.C Check_Simulation.C
|
|
$(CC) PlotSimulation.C -o PlotSimulation `root-config --cflags --glibs`
|
|
|
|
Isotope: ../Cleopatra/ClassIsotope.h ../Cleopatra/Isotope.C
|
|
$(CC) Isotope.C -o Isotope
|
|
|
|
IsotopeShort: ../Cleopatra/ClassIsotope.h ../Cleopatra/IsotopeShort.C
|
|
$(CC) IsotopeShort.C -o IsotopeShort
|
|
|
|
clean:
|
|
/bin/rm -f $(ALL)
|