Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
wine
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jason Beetham
wine
Commits
59b0d7b2
Commit
59b0d7b2
authored
24 years ago
by
Alexandre Julliard
Browse files
Options
Downloads
Patches
Plain Diff
Build wineclipsrv as part of the x11drv dll.
parent
a0d9ffda
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Makefile.in
+2
-4
2 additions, 4 deletions
Makefile.in
dlls/x11drv/Makefile.in
+13
-1
13 additions, 1 deletion
dlls/x11drv/Makefile.in
with
15 additions
and
5 deletions
Makefile.in
+
2
−
4
View file @
59b0d7b2
...
...
@@ -71,8 +71,7 @@ INCSUBDIRS = include
# Stand-alone programs
PROGRAMS
=
\
loader/dos/dosmod
\
server/wineserver
\
windows/x11drv/wineclipsrv
server/wineserver
# Programs that link with libwine
LIBPROGRAMS
=
\
...
...
@@ -176,13 +175,12 @@ install_wine: wine
install
::
$(PROGRAMS) $(LIBPROGRAMS) $(EMU_TARGET:%=install_%) $(LIBEXT:%=install_%)
[
-d
$(
bindir
)
]
||
$(
MKDIR
)
$(
bindir
)
$(
INSTALL_PROGRAM
)
server/wineserver
$(
bindir
)
/wineserver
$(
INSTALL_PROGRAM
)
windows/x11drv/wineclipsrv
$(
bindir
)
/wineclipsrv
$(
INSTALL_PROGRAM
)
loader/dos/dosmod
$(
bindir
)
/dosmod
$(
INSTALL_PROGRAM
)
debugger/winedbg
$(
bindir
)
/winedbg
uninstall
::
cd
$(
libdir
)
&&
$(
RM
)
libwine.a libwine.so libwine.so.
$(
SOVERSION
)
wine.sym
cd
$(
bindir
)
&&
$(
RM
)
wine wineserver
wineclipsrv
dosmod winedbg
cd
$(
bindir
)
&&
$(
RM
)
wine wineserver dosmod winedbg
lib$(MODULE).so.$(SOVERSION)
:
$(OBJS) Makefile.in Make.rules.in
$(
LDSHARED
)
$(
OBJS
)
-o
$@
...
...
This diff is collapsed.
Click to expand it.
dlls/x11drv/Makefile.in
+
13
−
1
View file @
59b0d7b2
...
...
@@ -10,6 +10,9 @@ SPEC_SRCS = x11drv.spec
C_SRCS
=
\
x11drv_main.c
PROGRAMS
=
\
$(
TOPOBJDIR
)
/windows/x11drv/wineclipsrv
EXTRA_OBJS
=
\
$(
TOPOBJDIR
)
/graphics/x11drv/x11drv.o
\
$(
TOPOBJDIR
)
/tsx11/tsx11.o
\
...
...
@@ -22,7 +25,16 @@ SUBDIRS = \
@MAKE_DLL_RULES@
$(EXTRA_OBJS)
:
$(TOOLSUBDIRS) dummy
all
:
$(PROGRAMS)
$(EXTRA_OBJS) $(PROGRAMS)
:
$(TOOLSUBDIRS) dummy
@
cd
`
dirname
$@
`
&&
$(
MAKE
)
`
basename
$@
`
install
::
$(PROGRAMS)
[
-d
$(
bindir
)
]
||
$(
MKDIR
)
$(
bindir
)
$(
INSTALL_PROGRAM
)
$(
TOPOBJDIR
)
/windows/x11drv/wineclipsrv
$(
bindir
)
/wineclipsrv
uninstall
::
cd
$(
bindir
)
&&
$(
RM
)
wineclipsrv
### Dependencies:
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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