-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
85 lines (75 loc) · 1.89 KB
/
Makefile
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
##
#
# This is the ODMBDEV Makefile
#
##
# BUILD_HOME:=$(shell pwd)/../..
include $(XDAQ_ROOT)/$(BUILD_SUPPORT)/mfAutoconf.rules
include $(XDAQ_ROOT)/$(BUILD_SUPPORT)/mfDefs.$(XDAQ_OS)
include $(BUILD_HOME)/emu/rpm_version
PACKAGE_VER_MAJOR=01
PACKAGE_VER_MINOR=00
PACKAGE_VER_PATCH=00
#
# Packages to be built
#
Project = emu
Package = emu/odmbdev
PackageName= emuodmbdev
Description="UCSB ODMB development tools"
Summary="UCSB ODMB development tools"
Authors="Dan King, Brant Rumberger, Joe Haley, Manuel Franco Sevilla"
Link=""
Sources = \
utils.cc \
Manager.cc \
Action.cc \
LogAction.cc \
Buttons.cc \
version.cc \
ButtonAction.cc \
FourTextBoxAction.cc \
OneTextBoxAction.cc \
MCSTextBoxAction.cc \
ThreeTextBoxAction.cc \
RepeatTextBoxAction.cc \
SignatureTextBoxAction.cc \
TextBoxAction.cc \
RadioButtonAction.cc \
VMEWrapper.cc \
JTAGWrapper.cc \
unpacker.cc
# Spy.cc
TestSources =
TestIncludeDirs =
IncludeDirs = \
$(XDAQ_ROOT)/include \
$(BUILD_HOME)/emu/base/include \
$(BUILD_HOME)/emu/soap/include \
$(BUILD_HOME)/emu/emuDCS/PeripheralCore/include \
$(BUILD_HOME)/emu/emuDCS/PeripheralApps/include \
$(BUILD_HOME)/emu/odmbdev/include \
$(BUILD_HOME)/emu/daq/reader
LibraryDirs = $(XDAQ_ROOT)/lib
UserSourcePath =
UserCFlags = $(ROOTCFLAGS)
#UserCCFlags = -g -Wall -pedantic-errors -Wno-long-long
UserCCFlags = -O0 -g -Wall -Wno-long-long $(ROOTCFLAGS) -std=c++11
UserDynamicLinkFlags = $(ROOTLIBS)
UserStaticLinkFlags =
UserExecutableLinkFlags =
# These libraries can be platform specific and
# potentially need conditional processing
#
Libraries =
ExternalObjects =
#
# Compile the source files and create a shared library
#
DynamicLibrary = emuodmbdev
StaticLibrary =
TestLibraryDirs=
TestLibraries=
TestExecutables=
include $(XDAQ_ROOT)/$(BUILD_SUPPORT)/Makefile.rules
include $(XDAQ_ROOT)/$(BUILD_SUPPORT)/mfRPM.rules