SOLARIS_Analysis/Cleopatra/makefile

38 lines
1.5 KiB
Makefile
Raw Normal View History

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