SOLARIS_Analysis/Cleopatra/makefile

35 lines
1.4 KiB
Makefile
Raw Normal View History

2023-04-03 16:03:48 -04:00
CC=g++
2024-02-20 18:15:16 -05:00
ALL = Isotope InFileCreator ExtractXSec ExtractXSecFromText PlotTGraphTObjArray Cleopatra FindThetaCM SimTransfer SimAlpha
2023-04-10 15:56:31 -04:00
all: $(ALL)
2023-04-03 16:03:48 -04:00
Isotope: ../Cleopatra/ClassIsotope.h ../Cleopatra/Isotope.C
$(CC) Isotope.C -o Isotope
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`
Cleopatra: Cleopatra.C
$(CC) Cleopatra.C -o Cleopatra `root-config --cflags --glibs`
2024-02-20 16:38:40 -05:00
FindThetaCM: FindThetaCM.C FindThetaCM.h ../Cleopatra/ClassTransfer.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`
2024-02-20 18:15:16 -05:00
SimTransfer: SimTransfer.C ../Cleopatra/ClassTransfer.h ../Cleopatra/ClassHelios.h ../Cleopatra/ClassIsotope.h ../Cleopatra/constant.h
$(CC) SimTransfer.C -o SimTransfer `root-config --cflags --glibs`
2023-04-03 16:03:48 -04:00
2024-02-20 18:15:16 -05:00
SimAlpha: SimAlpha.C ../Cleopatra/ClassHelios.h
$(CC) SimAlpha.C -o SimAlpha `root-config --cflags --glibs`
2024-02-20 16:38:40 -05:00
2023-04-10 15:56:31 -04:00
clean:
/bin/rm -f $(ALL)