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
8598a4c6
Commit
8598a4c6
authored
Sep 14, 2006
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
makefiles: Attempt to automatically run make depend when reading an updated makefile.
parent
84cb26e4
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
27 additions
and
9 deletions
+27
-9
Make.rules.in
Make.rules.in
+1
-7
Makefile.in
Makefile.in
+14
-2
configure
configure
+5
-0
configure.ac
configure.ac
+5
-0
Makefile.in
tools/Makefile.in
+2
-0
No files found.
Make.rules.in
View file @
8598a4c6
...
...
@@ -179,7 +179,7 @@ LINTS = $(C_SRCS:.c=.ln)
# 'all' target first in case the enclosing Makefile didn't define any target
all:
Makefile
all:
filter: dummy
@$(TOPSRCDIR)/tools/winapi/make_filter --make $(MAKE) all
...
...
@@ -193,12 +193,6 @@ $(RC_BINARIES): $(BIN2RES) $(RC_BINSRC)
$(RC_SRCS:.rc=.res) $(RC_SRCS16:.rc=.res): $(WRC) $(RC_BINARIES) $(IDL_TLB_SRCS:.idl=.tlb)
# Rules for makefile
Makefile: Makefile.in $(TOPSRCDIR)/configure
@echo Makefile is older than $?, please rerun $(TOPSRCDIR)/configure
@exit 1
# Rule for linting
$(MODULE).ln : $(LINTS)
...
...
Makefile.in
View file @
8598a4c6
...
...
@@ -103,10 +103,22 @@ fonts/__install__ loader/__install__ server/__install__: libs tools
programs/__install__
:
libs tools include dlls/__install-lib__
tools/__install-lib__ tools/__install-dev__
:
tools
depend $(SUBDIRS
:
%=%/__depend__): $(MAKEDEP)
RECURSE_TARGETS
=
\
$(SUBDIRS)
\
$
(
SUBDIRS:%
=
%/__clean__
)
\
$
(
SUBDIRS:%
=
%/__depend__
)
\
$
(
SUBDIRS:%
=
%/__install-dev__
)
\
$
(
SUBDIRS:%
=
%/__install-lib__
)
\
$
(
SUBDIRS:%
=
%/__install__
)
\
$
(
SUBDIRS:%
=
%/__uninstall__
)
\
$
(
TESTSUBDIRS:%
=
%/__crosstest__
)
\
$
(
TESTSUBDIRS:%
=
%/__test__
)
\
$
(
TESTSUBDIRS:%
=
%/__testclean__
)
depend $(RECURSE_TARGETS)
:
$(MAKEDEP)
$(MAKEDEP)
:
@
cd
$(TOOLSDIR)
/tools
&&
$(MAKE)
makedep
@
cd
$(TOOLSDIR)
/tools
&&
$(MAKE)
makedep
$(EXEEXT)
# Test rules
...
...
configure
View file @
8598a4c6
...
...
@@ -23765,6 +23765,11 @@ esac
DEPENDENCIES
=
"### Dependencies:
.INIT: Makefile
.BEGIN: Makefile
Makefile: dummy
-
\$
(MAKEDEP) -C
\$
(SRCDIR) -S
\$
(TOPSRCDIR) -T
\$
(TOPOBJDIR)
\$
(EXTRAINCL)
\$
(DEPEND_SRCS)
\$
(ALL_OBJS):
\$
(IDL_SRCS:.idl=.h)
\$
(LEX_SRCS:.l=.yy.o):
\$
(LEX_SRCS:.l=.yy.c)
\$
(BISON_SRCS:.y=.tab.o):
\$
(BISON_SRCS:.y=.tab.c)"
...
...
configure.ac
View file @
8598a4c6
...
...
@@ -1459,6 +1459,11 @@ dnl **** Generate output files ****
AC_SUBST(DEPENDENCIES,"### Dependencies:
.INIT: Makefile
.BEGIN: Makefile
Makefile: dummy
-\$(MAKEDEP) -C\$(SRCDIR) -S\$(TOPSRCDIR) -T\$(TOPOBJDIR) \$(EXTRAINCL) \$(DEPEND_SRCS)
\$(ALL_OBJS): \$(IDL_SRCS:.idl=.h)
\$(LEX_SRCS:.l=.yy.o): \$(LEX_SRCS:.l=.yy.c)
\$(BISON_SRCS:.y=.tab.o): \$(BISON_SRCS:.y=.tab.c)")
...
...
tools/Makefile.in
View file @
8598a4c6
...
...
@@ -95,3 +95,5 @@ uninstall::
-
$(UPDATE_DESKTOP_DATABASE)
@DEPENDENCIES@
# everything below this line is overwritten by make depend
Makefile
:
makedep$(EXEEXT)
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