Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Z
zmap
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Iterations
Wiki
Requirements
Jira
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ensembl-gh-mirror
zmap
Commits
140c0c9e
Commit
140c0c9e
authored
16 years ago
by
rds
Browse files
Options
Downloads
Patches
Plain Diff
Incorporation of libpfetch and libcurlobject
New files.... bootstrap....
parent
58011f08
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
src/Makefile.am
+3
-1
3 additions, 1 deletion
src/Makefile.am
src/Makefile.common
+2
-0
2 additions, 0 deletions
src/Makefile.common
src/configure.ac
+2
-0
2 additions, 0 deletions
src/configure.ac
src/lib/Makefile.am
+39
-1
39 additions, 1 deletion
src/lib/Makefile.am
with
46 additions
and
2 deletions
src/Makefile.am
+
3
−
1
View file @
140c0c9e
...
...
@@ -54,7 +54,9 @@ zmap_SOURCES = $(top_srcdir)/zmapApp/zmapApp_P.h
# $(NULL)
# -lZMap was at the end, why is this?
zmap_LDFLAGS
=
-L
$(
top_builddir
)
/lib
-lZMapApp
-lZMap
-lZMapThr
-lZMap
-lZMapXML
-lexpat
-lpopt
-lg2
-lgd
\
zmap_LDFLAGS
=
-L
$(
top_builddir
)
/lib
\
-lZMapApp
-lZMap
-lZMapThr
-lZMap
-lZMapXML
\
-lpfetch
-lcurlobj
-lexpat
-lpopt
-lg2
-lgd
\
@ACECONN_LIBS@
\
@GTK_LIBS@
\
@FOOCANVAS_LIBS@
\
...
...
This diff is collapsed.
Click to expand it.
src/Makefile.common
+
2
−
0
View file @
140c0c9e
...
...
@@ -19,5 +19,7 @@ LIBS_ZMAP = $(top_builddir)/lib/libZMapApp.a \
$(
top_builddir
)
/lib/libZMap.a
\
$(
top_builddir
)
/lib/libZMapThr.a
\
$(
top_builddir
)
/lib/libZMapXML.a
\
$(
top_builddir
)
/lib/libpfetch.a
\
$(
top_builddir
)
/lib/libcurlobject.a
\
$(
NULL
)
This diff is collapsed.
Click to expand it.
src/configure.ac
+
2
−
0
View file @
140c0c9e
...
...
@@ -393,6 +393,8 @@ zmapWindow/Makefile
zmapXML/Makefile
include/Makefile
lib/Makefile
libpfetch/Makefile
libcurlobject/Makefile
zmap.pc
dotZMap:dotZmap.in
$srcdir/$DX_CONFIG:Doxyfile.in
...
...
This diff is collapsed.
Click to expand it.
src/lib/Makefile.am
+
39
−
1
View file @
140c0c9e
...
...
@@ -8,6 +8,8 @@ LIBS_ZMAP_LOCAL = libZMapApp.a \
libZMap.a
\
libZMapThr.a
\
libZMapXML.a
\
libcurlobject.a
\
libpfetch.a
\
$(
NULL
)
noinst_LIBRARIES
=
$(
LIBS_ZMAP_LOCAL
)
...
...
@@ -187,7 +189,23 @@ $(top_srcdir)/zmapThreads/zmapThreadsUtils.c \
$(
top_srcdir
)
/zmapThreads/zmapThreads_P.h
\
$(
NULL
)
libpfetch_a_SOURCES
=
$(
top_srcdir
)
/libpfetch/libpfetch.c
\
$(
top_srcdir
)
/libpfetch/libpfetch-utils.c
\
$(
top_srcdir
)
/libpfetch/libpfetch_P.h
\
$(
top_srcdir
)
/libpfetch/libpfetch.h
\
$(
NULL
)
libpfetch_a_marshal
=
$(
top_srcdir
)
/libpfetch/libpfetch-cmarshal.list
libpfetch_a_extra_sources
=
$(
top_srcdir
)
/libpfetch/libpfetch-cmarshal.h
\
$(
top_srcdir
)
/libpfetch/libpfetch-cmarshal.c
\
$(
NULL
)
nodist_libpfetch_a_SOURCES
=
$(
libpfetch_a_extra_sources
)
libcurlobject_a_SOURCES
=
$(
top_srcdir
)
/libcurlobject/libcurlobject.c
\
$(
top_srcdir
)
/libcurlobject/libcurlobject.h
\
$(
NULL
)
libZMapXML_a_CPPFLAGS
=
$(
AM_CPPFLAGS
)
\
-I
$(
top_srcdir
)
/zmapXML
...
...
@@ -196,6 +214,7 @@ libZMapApp_a_CPPFLAGS = $(AM_CPPFLAGS) \
-I
$(
top_srcdir
)
/zmapApp
\
-I
$(
top_srcdir
)
/zmapManager
libZMap_a_CPPFLAGS
=
$(
AM_CPPFLAGS
)
\
-I
$(
top_srcdir
)
\
-I
$(
top_srcdir
)
/zmapConfig
\
-I
$(
top_srcdir
)
/zmapControl
\
-I
$(
top_srcdir
)
/zmapDocs
\
...
...
@@ -211,11 +230,30 @@ libZMapThr_a_CPPFLAGS = $(AM_CPPFLAGS) \
-I
$(
top_srcdir
)
/zmapServer/das
\
-I
$(
top_srcdir
)
/zmapServer/file
\
-I
$(
top_srcdir
)
/zmapThreads
libpfetch_a_CPPFLAGS
=
$(
AM_CPPFLAGS
)
\
-I
$(
top_srcdir
)
\
-I
$(
top_srcdir
)
/libpfetch
libcurlobject_a_CPPFLAGS
=
$(
AM_CPPFLAGS
)
\
-I
$(
top_srcdir
)
\
-I
$(
top_srcdir
)
/libcurlobject
libZMapApp_a_DEPENDENCIES
=
libZMap_a_DEPENDENCIES
=
libZMapXML.a
libZMap_a_DEPENDENCIES
=
libZMapXML.a
libpfetch.a
libZMapThr_a_DEPENDENCIES
=
libZMapXML.a
libpfetch_a_DEPENDENCIES
=
libcurlobject.a
GENMARSHAL_COMMAND
=
$(
GLIB_GENMARSHAL
)
--prefix
=
libpfetch_cmarshal
.list.h
:
$(
GENMARSHAL_COMMAND
)
--header
$<
>
$@
.list.c
:
$(
GENMARSHAL_COMMAND
)
--body
$<
>
$@
BUILT_SOURCES
=
$(
libpfetch_a_extra_sources
)
CLEANFILES
=
$(
BUILT_SOURCES
)
EXTRA_DIST
=
$(
libpfetch_a_marshal
)
forcemake
:
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment