| 1 | #-*- Mode: Makefile -*- |
| 2 | # $Id$ |
| 3 | |
| 4 | include $(MODDIR)/hlt.conf |
| 5 | |
| 6 | MODULE_SRCS= AliHLTHOMERReader.cxx \ |
| 7 | AliHLTHOMERWriter.cxx |
| 8 | |
| 9 | CLASS_HDRS:= AliHLTHOMERReader.h \ |
| 10 | AliHLTHOMERWriter.h |
| 11 | |
| 12 | MODULE_HDRS:= $(CLASS_HDRS) \ |
| 13 | AliHLTHOMERData.h |
| 14 | |
| 15 | # as the first step of the migration of the HOMER library to |
| 16 | # AliRoot we leave the class names as they are but change the |
| 17 | # file names. Thats why the automatic generation of the ROOT |
| 18 | # LinkDef file doesn't work for the moment |
| 19 | MODULE_DHDR:= AliHLTHOMERLinkDef.h |
| 20 | |
| 21 | SRCS:=$(patsubst %,BASE/HOMER/%,$(MODULE_SRCS)) |
| 22 | CINTHDRS:=$(patsubst %,BASE/HOMER/%,$(CLASS_HDRS)) |
| 23 | HDRS:=$(patsubst %,BASE/HOMER/%,$(CLASS_HDRS)) |
| 24 | DHDR:=$(patsubst %,BASE/HOMER/%,$(MODULE_DHDR)) |
| 25 | CINTAUTOLINK:= $(shell test "x$(MODULE_DHDR)" = "x" && echo 1) |
| 26 | |
| 27 | EDEFINE := ${HLTDEFS} |
| 28 | PACKCXXFLAGS := ${HLTCXXFLAGS} -DUSE_ROOT |
| 29 | PACKCFLAGS := ${HLTCLFAGS} -DUSE_ROOT |
| 30 | PACKDCXXFLAGS:= ${HLTDCXXFLAGS} -DUSE_ROOT |
| 31 | CINTFLAGS += -DUSE_ROOT |
| 32 | |
| 33 | EINCLUDE := BASE/HOMER |