Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
Lima-camera-frelon
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Jira
Jira
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
LimaGroup
Lima-camera-frelon
Commits
ce59e390
Commit
ce59e390
authored
Jun 22, 2017
by
Aitor Henry
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Deleting Makefiles.
parent
a98639c3
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
0 additions
and
157 deletions
+0
-157
Makefile
Makefile
+0
-25
src/Makefile
src/Makefile
+0
-61
test/Makefile
test/Makefile
+0
-71
No files found.
Makefile
deleted
100644 → 0
View file @
a98639c3
############################################################################
# This file is part of LImA, a Library for Image Acquisition
#
# Copyright (C) : 2009-2011
# European Synchrotron Radiation Facility
# BP 220, Grenoble 38043
# FRANCE
#
# This is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
# (at your option) any later version.
#
# This software is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, see <http://www.gnu.org/licenses/>.
############################################################################
src-dirs
=
src
test-dirs
=
test
include
../../global.inc
src/Makefile
deleted
100644 → 0
View file @
a98639c3
############################################################################
# This file is part of LImA, a Library for Image Acquisition
#
# Copyright (C) : 2009-2011
# European Synchrotron Radiation Facility
# BP 220, Grenoble 38043
# FRANCE
#
# This is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
# (at your option) any later version.
#
# This software is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, see <http://www.gnu.org/licenses/>.
############################################################################
LIMA_DIR
:=
$(
shell
pwd
)
/../../..
LIMA_ESPIA_DIR
:=
$(LIMA_DIR)
/camera/common/espia
include
$(LIMA_DIR)/config.inc
include
$(LIMA_DIR)/control/control.inc
include
$(LIMA_ESPIA_DIR)/include/espia.inc
frelon-objs
=
FrelonBase.o FrelonSerialLine.o FrelonModel.o FrelonCamera.o
\
FrelonTimingCtrl.o FrelonInterface.o FrelonCorrection.o
SRCS
=
$
(
frelon-objs:.o
=
.cpp
)
CPPFLAGS
=
-I
../include
-I
$(LIMA_ESPIA_DIR)
/include
$(CT_CPPFLAGS)
\
-I
$(ESPIA_DRV_INCL)
CXXFLAGS
=
$(CT_CXXFLAGS)
all
:
Frelon.o
Frelon.o
:
$(frelon-objs)
$(LD)
-o
$@
-r
$+
FrelonBase.o
:
Frelon.cpp
$(CXX)
$(CPPFLAGS)
-c
$(CXXFLAGS)
-o
$@
$<
clean
:
rm
-f
*
.o
*
.P
%.o
:
%.cpp
$(COMPILE.cpp)
$(CPPFLAGS)
-MD
$(CXXFLAGS)
-o
$@
$<
@
cp
$*
.d
$*
.P
;
\
sed
-e
's/#.*//'
-e
's/^[^:]*: *//'
-e
's/ *\\$$//'
\
-e
'/^$$/ d'
-e
's/$$/ :/'
<
$*
.d
>>
$*
.P
;
\
rm
-f
$*
.d
-include
$(SRCS:.cpp=.P)
.PHONY
:
check-syntax
check-syntax
:
$(CXX)
$(CPPFLAGS)
-Wextra
-fsyntax-only
$(CXXFLAGS)
$(CHK_SOURCES)
test/Makefile
deleted
100644 → 0
View file @
a98639c3
############################################################################
# This file is part of LImA, a Library for Image Acquisition
#
# Copyright (C) : 2009-2011
# European Synchrotron Radiation Facility
# BP 220, Grenoble 38043
# FRANCE
#
# This is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
# (at your option) any later version.
#
# This software is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, see <http://www.gnu.org/licenses/>.
############################################################################
LIMA_DIR
:=
$(
shell
pwd
)
/../../..
LIMA_ESPIA_DIR
:=
$(LIMA_DIR)
/camera/common/espia
include
$(LIMA_DIR)/config.inc
include
$(LIMA_DIR)/control/control.inc
include
$(LIMA_ESPIA_DIR)/include/espia.inc
SRCS
=
test_frelon.cpp test_frelon_interface.cpp test_frelon_spectroscopy.cpp
\
test_frelon_control.cpp
CPPFLAGS
=
-I
../include
-I
$(LIMA_ESPIA_DIR)
/include
$(CT_CPPFLAGS)
\
-I
$(ESPIA_DRV_INCL)
CXXFLAGS
=
$(CT_CXXFLAGS)
DEPLIBS
=
$(CT_DEPLIBS)
\
$(LIMA_DIR)
/build,limacore
\
$(LIMA_DIR)
/build,limaespia
\
$(LIMA_DIR)
/build,limafrelon
LDFLAGS
=
$(CT_LDFLAGS)
$(
call
lib-depflags,
$(DEPLIBS)
)
-L
$(ESPIA_DRV_LIB)
LDLIBS
=
$(CT_LDLIBS)
$(
call
lib-deplibs,
$(DEPLIBS)
)
-lespia
test-progs
=
test_frelon test_frelon_interface test_frelon_spectroscopy
\
test_frelon_control
old-progs
=
testfrelon testfreloninterface testfrelonspectroscopy
\
testfreloncontrol
all
:
$(test-progs)
test_frelon
:
test_frelon.o
$(CXX)
$(LDFLAGS)
-o
$@
$+
$(LDLIBS)
test_frelon_interface
:
test_frelon_interface.o
$(CXX)
$(LDFLAGS)
-o
$@
$+
$(LDLIBS)
test_frelon_spectroscopy
:
test_frelon_spectroscopy.o
$(CXX)
$(LDFLAGS)
-o
$@
$+
$(LDLIBS)
test_frelon_control
:
test_frelon_control.o
$(CXX)
$(LDFLAGS)
-o
$@
$+
$(LDLIBS)
clean
:
rm
-f
*
.o
*
.P
$
(
test-progs
)
$
(
old-progs
)
%.o
:
%.cpp
$(COMPILE.cpp)
$(CPPFLAGS)
-MD
$(CXXFLAGS)
-o
$@
$<
@
cp
$*
.d
$*
.P
;
\
sed
-e
's/#.*//'
-e
's/^[^:]*: *//'
-e
's/ *\\$$//'
\
-e
'/^$$/ d'
-e
's/$$/ :/'
<
$*
.d
>>
$*
.P
;
\
rm
-f
$*
.d
-include
$(SRCS:.cpp=.P)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment