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
|
#########################################################################
# XDAQ Components for Distributed Data Acquisition #
# Authors: A. Ryd #
# #
#########################################################################
#
# This makefile is for the online build of this package
#
include $(XDAQ_ROOT)/config/mfAutoconf.rules
include $(XDAQ_ROOT)/config/mfDefs.$(XDAQ_OS)
Project=pixel
Package=CalibFormats/SiPixelObjects
PackageName=SiPixelObjects
Sources = $(wildcard src/*.cc)
IncludeDirs = \
$(BUILD_HOME)/$(Project) \
LibraryDirs =
UserSourcePath = \
src
UserCFlags = -O
UserCCFlags = -g -O -Wno-long-long
UserDynamicLinkFlags =
UserStaticLinkFlags =
UserExecutableLinkFlags =
# These libraries can be platform specific and
# potentially need conditional processing
#
Libraries =
ExternalObjects =
#
# Compile the source files and create a shared library
#
#ifdef Library
DynamicLibrary= SiPixelObjects
#DynamicLibrary= $(Library)
#endif
ifdef Executable
Libraries=toolbox xdata xcept xoap xerces-c log4cplus mimetic
Executables= $(Executable).cc
endif
include $(XDAQ_ROOT)/config/Makefile.rules
include $(BUILD_HOME)/$(Project)/RPM.version
include $(XDAQ_ROOT)/config/mfRPM.rules
|