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
2a117f56
Commit
2a117f56
authored
16 years ago
by
rds
Browse files
Options
Downloads
Patches
Plain Diff
include _all_ header files
parent
8bf82306
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
g2/src_Makefile.am
+28
-5
28 additions, 5 deletions
g2/src_Makefile.am
with
28 additions
and
5 deletions
g2/src_Makefile.am
+
28
−
5
View file @
2a117f56
...
...
@@ -11,7 +11,10 @@ GD_DIR = GD
# Conditionally compile devices (See AM_CONDITIONAL in configure.ac)
if PS
PS_SOURCEFILES = $(PS_DIR)/g2_PS.c
PS_SOURCEFILES = $(PS_DIR)/g2_PS.c \
$(PS_DIR)/g2_PS_P.h \
$(PS_DIR)/g2_PS_funix.h \
$(PS_DIR)/g2_PS_definitions.h
PS_HEADERFILES = $(PS_DIR)/g2_PS.h
else
PS_SOURCEFILES = $(NULL)
...
...
@@ -19,7 +22,9 @@ else
endif
if FIG
FIG_SOURCEFILES = $(FIG_DIR)/g2_FIG.c
FIG_SOURCEFILES = $(FIG_DIR)/g2_FIG.c \
$(FIG_DIR)/g2_FIG_P.h \
$(FIG_DIR)/g2_FIG_funix.h
FIG_HEADERFILES = $(FIG_DIR)/g2_FIG.h
else
FIG_SOURCEFILES = $(NULL)
...
...
@@ -27,7 +32,9 @@ else
endif
if X11
X11_SOURCEFILES = $(X11_DIR)/g2_X11.c
X11_SOURCEFILES = $(X11_DIR)/g2_X11.c \
$(X11_DIR)/g2_X11_P.h \
$(X11_DIR)/g2_X11_funix.h
X11_HEADERFILES = $(X11_DIR)/g2_X11.h
else
X11_SOURCEFILES = $(NULL)
...
...
@@ -35,7 +42,11 @@ else
endif
if WIN32
WIN32_SOURCEFILES = $(WIN32_DIR)/g2_win32.c $(WIN32_DIR)/g2_win32_thread.c
WIN32_SOURCEFILES = $(WIN32_DIR)/g2_win32.c \
$(WIN32_DIR)/g2_win32_thread.c \
$(WIN32_DIR)/g2_win32_P.h \
$(WIN32_DIR)/g2_win32_funix.h \
$(WIN32_DIR)/resource.h
WIN32_HEADERFILES = $(WIN32_DIR)/g2_win32.h
else
WIN32_SOURCEFILES = $(NULL)
...
...
@@ -43,7 +54,9 @@ else
endif
if GD
GD_SOURCEFILES = $(GD_DIR)/g2_gd.c
GD_SOURCEFILES = $(GD_DIR)/g2_gd.c \
$(GD_DIR)/g2_gd_P.h \
$(GD_DIR)/g2_gd_funix.h
GD_HEADERFILES = $(GD_DIR)/g2_gd.h
else
GD_SOURCEFILES = $(NULL)
...
...
@@ -52,6 +65,15 @@ endif
# libtool library
libg2_la_HEADERS_PRV = g2_config.h \
g2_control_pd.h \
g2_device.h \
g2_funix.h \
g2_graphic_pd.h \
g2_physical_device.h \
g2_util.h \
g2_virtual_device.h
lib_LTLIBRARIES = libg2.la
libg2_la_LDFLAGS = -version-info @G2_CURRENT@:@G2_REVISION@:@G2_AGE@
libg2_la_SOURCES = g2_device.c \
...
...
@@ -66,6 +88,7 @@ libg2_la_SOURCES = g2_device.c \
g2_ui_virtual_device.c \
g2_ui_device.c \
g2_splines.c \
$(libg2_la_HEADERS_PRV)\
$(PS_SOURCEFILES) \
$(FIG_SOURCEFILES) \
$(X11_SOURCEFILES) \
...
...
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