]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/SampleLib/Makefile.am
Copy constructor and assignment operator are added
[u/mrichter/AliRoot.git] / HLT / SampleLib / Makefile.am
CommitLineData
b521659f 1# $Id$
2# Makefile template for the Alice HLT sample library
3
b22e91eb 4EXTRA_DIST = tutorial.c
5
b521659f 6MODULE = AliHLTSample
7
8AM_CPPFLAGS = -I$(top_srcdir)/src \
9 -I$(top_srcdir)/BASE
10
11
12# library definition
13lib_LTLIBRARIES = libAliHLTSample.la
14
15# library sources
16libAliHLTSample_la_SOURCES = AliHLTSampleComponent1.cxx \
17 AliHLTSampleComponent2.cxx \
18 AliHLTDummyComponent.cxx
19
20# class header files, the link definition for the root dictionary
21# will be created from the names of the header files
22CLASS_HDRS = AliHLTSampleComponent1.h \
23 AliHLTSampleComponent2.h \
24 AliHLTDummyComponent.h
25
26noinst_HEADERS = $(CLASS_HDRS)
27
28# version info for the library
29libAliHLTSample_la_LDFLAGS = -version-info 1:0:0
30
31# set the file name for the generated root dictionary
32DICTCPP = AliHLTSample-DICT.cxx
33nodist_libAliHLTSample_la_SOURCES = $(DICTCPP)
34
35CLEANFILES =
36
37include $(top_srcdir)/make.dict