]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/SampleLib/Makefile.am
- check for AliRoot features/libs/files and corresponding conditional
[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
85869391 8AM_CPPFLAGS = -I$(top_srcdir)/BASE
b521659f 9
10
11# library definition
12lib_LTLIBRARIES = libAliHLTSample.la
13
14# library sources
15libAliHLTSample_la_SOURCES = AliHLTSampleComponent1.cxx \
16 AliHLTSampleComponent2.cxx \
17 AliHLTDummyComponent.cxx
18
19# class header files, the link definition for the root dictionary
20# will be created from the names of the header files
21CLASS_HDRS = AliHLTSampleComponent1.h \
22 AliHLTSampleComponent2.h \
23 AliHLTDummyComponent.h
24
25noinst_HEADERS = $(CLASS_HDRS)
26
27# version info for the library
28libAliHLTSample_la_LDFLAGS = -version-info 1:0:0
29
30# set the file name for the generated root dictionary
31DICTCPP = AliHLTSample-DICT.cxx
32nodist_libAliHLTSample_la_SOURCES = $(DICTCPP)
33
34CLEANFILES =
35
36include $(top_srcdir)/make.dict