File: Makefile.am

package info (click to toggle)
thepeg 1.8.0-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, wheezy
  • size: 9,312 kB
  • ctags: 11,509
  • sloc: cpp: 57,129; sh: 11,315; java: 3,212; lisp: 1,402; makefile: 830; ansic: 58; perl: 3
file content (64 lines) | stat: -rw-r--r-- 2,814 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
mySOURCES = EventHandler.cc SubProcessHandler.cc \
            HandlerGroup.cc Hint.cc XComb.cc AnalysisHandler.cc \
            CascadeHandler.cc MultipleInteractionHandler.cc DecayHandler.cc \
            EventManipulator.cc StepHandler.cc HadronizationHandler.cc \
            HandlerBase.cc \
            FlavourGenerator.cc LuminosityFunction.cc \
            StandardEventHandler.cc  \
            SamplerBase.cc  ClusterCollapser.cc \
            PtGenerator.cc ZGenerator.cc   \
            StandardXComb.cc StdDependentXComb.cc StdXCombGroup.cc

DOCFILES = AnalysisHandler.h CascadeHandler.h \
           DecayHandler.h EventHandler.h EventManipulator.h \
           FlavourGenerator.h HadronizationHandler.h \
           HandlerBase.h HandlerGroup.h Hint.h \
           LuminosityFunction.h \
           MultipleInteractionHandler.h StandardEventHandler.h \
           StepHandler.h SubProcessHandler.h XComb.h LastXCombInfo.h \
           SamplerBase.h  ClusterCollapser.h \
           PtGenerator.h ZGenerator.h StandardXComb.h StdDependentXComb.h \
	   StdXCombGroup.h

INCLUDEFILES = $(DOCFILES) HandlerGroup.tcc \
               StandardEventHandler.fh \
               SubProcessHandler.fh EventHandler.fh SamplerBase.fh \
               ClusterCollapser.fh StandardXComb.fh StdDependentXComb.fh \
	       StdXCombGroup.fh AnalysisHandler.fh


noinst_LTLIBRARIES = libThePEGHandlers.la
pkglib_LTLIBRARIES = FixedCMSLuminosity.la \
          ACDCSampler.la SimpleFlavour.la GaussianPtGenerator.la \
          SimpleZGenerator.la


libThePEGHandlers_la_SOURCES = $(mySOURCES) $(INCLUDEFILES)

# Version info should be updated if any interface or persistent I/O
# function is changed
FixedCMSLuminosity_la_LDFLAGS = $(AM_LDFLAGS) -module $(LIBTOOLVERSIONINFO)
FixedCMSLuminosity_la_SOURCES = FixedCMSLuminosity.cc FixedCMSLuminosity.h

# Version info should be updated if any interface or persistent I/O
# function is changed
ACDCSampler_la_LDFLAGS = $(AM_LDFLAGS) -module $(LIBTOOLVERSIONINFO)
ACDCSampler_la_SOURCES = ACDCSampler.cc ACDCSampler.h

# Version info should be updated if any interface or persistent I/O
# function is changed
SimpleFlavour_la_LDFLAGS = $(AM_LDFLAGS) -module $(LIBTOOLVERSIONINFO)
SimpleFlavour_la_SOURCES = SimpleFlavour.cc SimpleFlavour.h

# Version info should be updated if any interface or persistent I/O
# function is changed
GaussianPtGenerator_la_LDFLAGS = $(AM_LDFLAGS) -module $(LIBTOOLVERSIONINFO)
GaussianPtGenerator_la_SOURCES = GaussianPtGenerator.cc GaussianPtGenerator.h

# Version info should be updated if any interface or persistent I/O
# function is changed
SimpleZGenerator_la_LDFLAGS = $(AM_LDFLAGS) -module $(LIBTOOLVERSIONINFO)
SimpleZGenerator_la_SOURCES = SimpleZGenerator.cc SimpleZGenerator.h

include $(top_srcdir)/Config/Makefile.aminclude