Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
2a4707ab
Commit
2a4707ab
authored
Oct 11, 1998
by
Uwe Bonnes
Committed by
Alexandre Julliard
Oct 11, 1998
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Don't install object files when --disable-lib is selected.
parent
fd314683
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
3 deletions
+7
-3
Makefile.in
Makefile.in
+4
-2
configure
configure
+0
-0
configure.in
configure.in
+3
-1
No files found.
Makefile.in
View file @
2a4707ab
...
...
@@ -117,6 +117,8 @@ EMUOBJS = \
LIB_TARGET
=
@LIB_TARGET@
ALT_LINK
=
@ALT_LINK@
all
:
$(MAIN_TARGET)
@MAKE_RULES@
...
...
@@ -130,7 +132,7 @@ emu: wine
lib
:
$(LIBSUBDIRS) $(LIB_TARGET)
wine wine.sym
:
$(LIBSUBDIRS) $(LIB_TARGET) $(EMUSUBDIRS) dummy
$(CC)
-o
wine
$(EMUOBJS)
$(LIB_TARGET)
$(LDOPTIONS)
$(X_LIBS)
$(XPM_LIB)
$(XLIB)
$(LIBS)
$(CC)
-o
wine
$(EMUOBJS)
$(LIB_TARGET)
$(
ALT_LINK)
$(
LDOPTIONS)
$(X_LIBS)
$(XPM_LIB)
$(XLIB)
$(LIBS)
nm
-n
wine |
grep
-v
_compiled
>
wine.sym
libwine.a
:
$(LIBOBJS)
...
...
@@ -151,7 +153,7 @@ uninstall_emu: uninstall_lib
install_lib
:
install_includes
[
-d
$(libdir)
]
||
$(MKDIR)
$(libdir)
$(INSTALL_DATA)
$(LIB_TARGET)
$(libdir)
if
[
$(LIB_TARGET)
]
;
then
$(INSTALL_DATA)
$(LIB_TARGET)
$(libdir)
;
fi
$(INSTALL_DATA)
wine.sym
$(libdir)
/wine.sym
uninstall_lib
:
uninstall_includes
...
...
configure
View file @
2a4707ab
This diff is collapsed.
Click to expand it.
configure.in
View file @
2a4707ab
...
...
@@ -15,6 +15,7 @@ dnl **** Command-line arguments ****
dnl Default values
MAIN_TARGET=emu
LIB_TARGET=libwine.a
ALT_LINK=" "
TRACE_MSGS=yes # the TRACE() macro
DEBUG_MSGS=yes # the TRACE(), WARN(), and FIXME() macros.
...
...
@@ -28,7 +29,7 @@ AC_ARG_ENABLE(dll,
AC_ARG_ENABLE(lib,
[ --disable-lib build the Wine without building libwine.a],
[if test "$enableval" = "no"; then
LIB_TARGET="\$(LIBOBJS)
"; fi])
[if test "$enableval" = "no"; then
ALT_LINK="\$(LIBOBJS)"; LIB_TARGET="
"; fi])
dnl AC_ARG_WITH(ipc,
dnl [ --enable-ipc use inter-process communication for DDE],
...
...
@@ -47,6 +48,7 @@ AC_ARG_WITH(reentrant-x,
AC_SUBST(MAIN_TARGET)
AC_SUBST(LIB_TARGET)
AC_SUBST(ALT_LINK)
AC_SUBST(OPTIONS)
if test "$DEBUG_MSGS" = "no"
...
...
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