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
c70dc833
Commit
c70dc833
authored
Feb 13, 1999
by
James Juran
Committed by
Alexandre Julliard
Feb 13, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Created include/Makefile.in to separate header file installation from
the top-level Makefile.
parent
251c9dfd
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
44 additions
and
19 deletions
+44
-19
Makefile.in
Makefile.in
+9
-19
configure
configure
+2
-0
configure.in
configure.in
+1
-0
.cvsignore
include/.cvsignore
+1
-0
Makefile.in
include/Makefile.in
+31
-0
No files found.
Makefile.in
View file @
c70dc833
...
...
@@ -80,8 +80,10 @@ PROGSUBDIRS = libtest programs
DOCSUBDIRS
=
documentation
# All sub-directories
ALLSUBDIRS
=
\
INCSUBDIRS
=
include
# Sub-directories to run make into
BUILDSUBDIRS
=
\
$(LIBSUBDIRS)
\
$(X11SUBDIRS)
\
$(EMUSUBDIRS)
\
...
...
@@ -92,7 +94,7 @@ ALLSUBDIRS = \
DEPENDSUBDIRS
=
$(LIBSUBDIRS)
$(X11SUBDIRS)
$(EMUSUBDIRS)
$(DOCSUBDIRS)
# Sub-directories to run make install into
INSTALLSUBDIRS
=
$(DOCSUBDIRS)
INSTALLSUBDIRS
=
$(DOCSUBDIRS)
$(INCSUBDIRS)
LIBOBJS
=
\
controls/controls.o
\
...
...
@@ -186,28 +188,16 @@ install_emu: install_lib
uninstall_emu
:
uninstall_lib
$(RM)
$(bindir)
/wine
$(bindir)
/dosmod
install_lib
:
install_includes
install_lib
:
dummy
[
-d
$(libdir)
]
||
$(MKDIR)
$(libdir)
if
[
$(LIB_TARGET)
]
;
then
$(INSTALL_DATA)
$(LIB_TARGET)
$(libdir)
;
fi
$(INSTALL_DATA)
wine.sym
$(libdir)
/wine.sym
uninstall_lib
:
uninstall_includes
uninstall_lib
:
dummy
cd
$(libdir)
;
$(RM)
$(LIB_TARGET)
$(RM)
$(libdir)
/wine.sym
install_includes
:
dummy
# Testing LIB_TARGET prevents installing header files
# when --disable-lib is used.
if
[
$(LIB_TARGET)
];
then
[
-d
$(includedir)
]
||
$(MKDIR)
$(includedir);
\
cd
$(TOPSRCDIR)/include;
$(INSTALL_DATA)
windows.h
wintypes.h
$(includedir);
fi
# Don't just do a rm -rf on $(includedir) -- don't want to wipe out
# anything extra the user may have put there.
uninstall_includes
:
dummy
$(RM)
$(includedir)
/windows.h
$(includedir)
/wintypes.h
-
rmdir
$(includedir)
$(ALLSUBDIRS)
:
dummy
$(BUILDSUBDIRS)
:
dummy
@
cd
$@
;
$(SUBMAKE)
install_programs
:
dummy
...
...
@@ -237,7 +227,7 @@ htmlpages:
for
i
in
$(LIBSUBDIRS)
;
do
(
cd
$$
i
&&
$(MAKE)
html
)
;
done
clean
::
for
i
in
$(
ALL
SUBDIRS)
;
do
(
cd
$$
i
;
$(MAKE)
clean
)
||
exit
1
;
done
for
i
in
$(
BUILD
SUBDIRS)
;
do
(
cd
$$
i
;
$(MAKE)
clean
)
||
exit
1
;
done
for
i
in
include
;
do
(
cd
$$
i
;
$(RM)
*
.o
\#
*
\#
.#
*
*
~
*
%
*
.bak
*
.orig
*
.rej
*
.flc
)
;
done
$(RM)
wine wine.sym libwine.a libwine.so.1.0 libwine.so TAGS .#
*
...
...
configure
View file @
c70dc833
...
...
@@ -4495,6 +4495,7 @@ graphics/ttydrv/Makefile
graphics/win16drv/Makefile
graphics/x11drv/Makefile
if1632/Makefile
include/Makefile
ipc/Makefile
library/Makefile
libtest/Makefile
...
...
@@ -4654,6 +4655,7 @@ graphics/ttydrv/Makefile
graphics/win16drv/Makefile
graphics/x11drv/Makefile
if1632/Makefile
include/Makefile
ipc/Makefile
library/Makefile
libtest/Makefile
...
...
configure.in
View file @
c70dc833
...
...
@@ -622,6 +622,7 @@ graphics/ttydrv/Makefile
graphics/win16drv/Makefile
graphics/x11drv/Makefile
if1632/Makefile
include/Makefile
ipc/Makefile
library/Makefile
libtest/Makefile
...
...
include/.cvsignore
View file @
c70dc833
Makefile
config.h
include/Makefile.in
0 → 100644
View file @
c70dc833
TOPSRCDIR
=
@top_srcdir@
TOPOBJDIR
=
..
SRCDIR
=
@srcdir@
VPATH
=
@srcdir@
MODULE
=
none
LIB_TARGET
=
@LIB_TARGET@
INSTALLED_INCLUDES
=
\
windows.h
\
wingdi.h
\
wintypes.h
\
winuser.h
@MAKE_RULES@
# Testing LIB_TARGET prevents installing header files
# when --disable-lib is used
install
::
dummy
if
[
$(LIB_TARGET)
]
;
then
[
-d
$(includedir)
]
||
$(MKDIR)
$(includedir)
;
\
$(INSTALL_DATA)
$(INSTALLED_INCLUDES)
$(includedir)
;
fi
# Don't just do a rm -rf on $(includedir) -- don't want to wipe out
# anything extra the user may have put there.
uninstall
::
cd
$(includedir)
;
$(RM)
$(INSTALLED_INCLUDES)
-
rmdir
$(includedir)
dummy
:
### Dependencies:
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