Skip to content
Snippets Groups Projects
Commit 6ff553d3 authored by Alexandre Julliard's avatar Alexandre Julliard
Browse files

configure: Add a rule to prevent rebuilding makedep when tools are disabled.

parent 8814727a
No related branches found
No related tags found
No related merge requests found
...@@ -17524,6 +17524,9 @@ then ...@@ -17524,6 +17524,9 @@ then
\$(CC) -Iinclude -I$srcdir/include \$(ALLCFLAGS) -o \$@ $srcdir/tools/makedep.c \$(LDFLAGS) \$(CC) -Iinclude -I$srcdir/include \$(ALLCFLAGS) -o \$@ $srcdir/tools/makedep.c \$(LDFLAGS)
clean:: __clean__ clean:: __clean__
\$(RM) tools/makedep$ac_exeext" \$(RM) tools/makedep$ac_exeext"
else
wine_fn_append_rule "\$(MAKEDEP):
@echo \"You need to run make in $TOOLSDIR first\" && false"
fi fi
   
if test -n "$with_wine64" if test -n "$with_wine64"
......
...@@ -3525,6 +3525,10 @@ then ...@@ -3525,6 +3525,10 @@ then
\$(CC) -Iinclude -I$srcdir/include \$(ALLCFLAGS) -o \$@ $srcdir/tools/makedep.c \$(LDFLAGS) \$(CC) -Iinclude -I$srcdir/include \$(ALLCFLAGS) -o \$@ $srcdir/tools/makedep.c \$(LDFLAGS)
clean:: __clean__ clean:: __clean__
\$(RM) tools/makedep$ac_exeext]) \$(RM) tools/makedep$ac_exeext])
else
WINE_APPEND_RULE(
[\$(MAKEDEP):
@echo \"You need to run make in $TOOLSDIR first\" && false])
fi fi
if test -n "$with_wine64" if test -n "$with_wine64"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment