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
83558875
Commit
83558875
authored
Sep 30, 2013
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
makefiles: Clean files from the top-level makefile where possible.
parent
1b6e9d24
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
78 additions
and
25 deletions
+78
-25
Make.rules.in
Make.rules.in
+1
-2
aclocal.m4
aclocal.m4
+64
-12
configure
configure
+0
-0
configure.ac
configure.ac
+0
-0
Makefile.in
libs/wine/Makefile.in
+2
-1
make_makefiles
tools/make_makefiles
+11
-10
No files found.
Make.rules.in
View file @
83558875
...
...
@@ -24,10 +24,9 @@ IDL_GEN_C_SRCS = $(IDL_C_SRCS:.idl=_c.c) $(IDL_I_SRCS:.idl=_i.c) \
IDL_GEN_HEADERS = $(IDL_H_SRCS:.idl=.h) $(IDL_C_SRCS:.idl=.h) $(IDL_I_SRCS:.idl=.h) \
$(IDL_P_SRCS:.idl=.h) $(IDL_S_SRCS:.idl=.h)
CLEAN_FILES = *.o *.a *.so *.mo *.ln *.res *.fake
core
CLEAN_FILES = *.o *.a *.so *.mo *.ln *.res *.fake
*.tab.[ch] *.yy.c
CLEAN_TARGETS = $(IDL_GEN_C_SRCS) $(IDL_GEN_HEADERS) \
$(IDL_TLB_SRCS:.idl=.tlb) $(IDL_P_SRCS:.idl=_p.c dlldata.c) \
$(BISON_SRCS:.y=.tab.c) $(BISON_SRCS:.y=.tab.h) $(LEX_SRCS:.l=.yy.c) \
$(PO_SRCS:.rc=.res rsrc.pot) $(MC_SRCS:.mc=.res msg.pot) $(XTEMPLATE_SRCS:.x=.h)
OBJS = $(C_SRCS:.c=.o) $(BISON_SRCS:.y=.tab.o) $(LEX_SRCS:.l=.yy.o) $(IDL_GEN_C_SRCS:.c=.o) $(OBJC_SRCS:.m=.o) \
...
...
aclocal.m4
View file @
83558875
...
...
@@ -232,12 +232,7 @@ wine_fn_all_dir_rules ()
esac
wine_fn_append_rule \
"__clean__: $ac_dir/__clean__
.PHONY: $ac_dir/__clean__
$ac_dir/__clean__: $ac_dir/Makefile
@cd $ac_dir && \$(MAKE) clean
\$(RM) $ac_dir/Makefile
$ac_dir/Makefile: $ac_dir/Makefile.in Make.vars.in config.status $ac_alldeps
"$ac_dir/Makefile: $ac_dir/Makefile.in Make.vars.in config.status $ac_alldeps
@./config.status --file $ac_dir/Makefile:$ac_input && cd $ac_dir && \$(MAKE) depend
depend: $ac_dir/__depend__
.PHONY: $ac_dir/__depend__
...
...
@@ -270,7 +265,7 @@ $ac_dir/rsrc.pot: tools/wrc include"
fi
}
wine_fn_config_
makefile
()
wine_fn_config_
all_make_rules
()
{
ac_dir=$[1]
ac_enable=$[2]
...
...
@@ -315,12 +310,45 @@ install-dev:: $ac_dir/__install-dev__"
fi
}
wine_fn_clean_rules ()
{
ac_dir=$[1]
ac_flags=$[2]
shift; shift
ac_clean=$[@]
if wine_fn_has_flag clean $ac_flags
then
wine_fn_append_rule \
"__clean__: $ac_dir/__clean__
.PHONY: $ac_dir/__clean__
$ac_dir/__clean__: $ac_dir/Makefile
@cd $ac_dir && \$(MAKE) clean
\$(RM) $ac_dir/Makefile"
else
wine_fn_append_rule \
"clean::
\$(RM) \$(CLEAN_FILES:%=$ac_dir/%) $ac_clean $ac_dir/Makefile"
fi
}
wine_fn_config_makefile ()
{
ac_dir=$[1]
ac_enable=$[2]
ac_flags=$[3]
wine_fn_config_all_make_rules $ac_dir $ac_enable $ac_flags
wine_fn_clean_rules $ac_dir $ac_flags
}
wine_fn_config_lib ()
{
ac_name=$[1]
ac_flags=$[2]
ac_dir=dlls/$ac_name
wine_fn_config_makefile $ac_dir enable_$ac_name "$ac_flags" dlls/Makeimplib.rules
wine_fn_config_all_make_rules $ac_dir enable_$ac_name "$ac_flags" dlls/Makeimplib.rules
wine_fn_clean_rules $ac_dir $ac_flags
if wine_fn_has_flag install-dev $ac_flags
then :
...
...
@@ -358,7 +386,13 @@ wine_fn_config_dll ()
*) ac_dll=$ac_dll.dll ;;
esac
wine_fn_config_makefile $ac_dir $ac_enable "$ac_flags" dlls/Makedll.rules
wine_fn_config_all_make_rules $ac_dir $ac_enable "$ac_flags" dlls/Makedll.rules
ac_clean=
wine_fn_has_flag implib $ac_flags && ac_clean="$ac_clean $ac_file.$IMPLIBEXT"
wine_fn_has_flag mc $ac_flags && ac_clean="$ac_clean $ac_dir/msg.pot"
wine_fn_has_flag po $ac_flags && ac_clean="$ac_clean $ac_dir/rsrc.pot"
wine_fn_clean_rules $ac_dir "$ac_flags" $ac_clean
AS_VAR_IF([$ac_enable],[no],
dnl enable_win16 is special in that it disables import libs too
...
...
@@ -485,7 +519,14 @@ wine_fn_config_program ()
*) ac_program=$ac_program.exe ;;
esac
wine_fn_config_makefile $ac_dir $ac_enable "$ac_flags" programs/Makeprog.rules
wine_fn_config_all_make_rules $ac_dir $ac_enable "$ac_flags" programs/Makeprog.rules
ac_clean=
wine_fn_has_flag mc $ac_flags && ac_clean="$ac_clean $ac_dir/msg.pot"
wine_fn_has_flag po $ac_flags && ac_clean="$ac_clean $ac_dir/rsrc.pot"
wine_fn_has_flag manpage $ac_flags && ac_clean="$ac_clean $ac_dir/$ac_name.man"
test -n "$DLLEXT" || ac_clean="$ac_clean $ac_dir/$ac_program"
wine_fn_clean_rules $ac_dir "$ac_flags" $ac_clean
AS_VAR_IF([$ac_enable],[no],,[wine_fn_append_rule "$ac_dir: __builddeps__"
...
...
@@ -537,8 +578,15 @@ wine_fn_config_test ()
ac_dir=$[1]
ac_name=$[2]
ac_flags=$[3]
ac_clean=
test "x$CROSSTEST_DISABLE" = x && ac_clean=`expr $ac_dir/${ac_name} : "\\(.*\\)_test"`_crosstest.exe
test -n "$DLLEXT" || ac_clean=$ac_dir/${ac_name}.exe
ac_clean="$ac_clean $ac_dir/*.ok $ac_dir/testlist.c"
wine_fn_append_file ALL_TEST_RESOURCES $ac_name.res
wine_fn_all_dir_rules $ac_dir Maketest.rules
wine_fn_clean_rules $ac_dir "$ac_flags" $ac_clean
AS_VAR_IF([enable_tests],[no],,[wine_fn_append_rule \
"all: $ac_dir
...
...
@@ -569,7 +617,8 @@ wine_fn_config_tool ()
ac_flags=$[2]
AS_VAR_IF([enable_tools],[no],[return 0])
wine_fn_config_makefile $ac_dir enable_tools $ac_flags
wine_fn_config_all_make_rules $ac_dir enable_tools $ac_flags
wine_fn_clean_rules $ac_dir $ac_flags
wine_fn_append_rule "__tooldeps__: $ac_dir"
wine_fn_append_rule "$ac_dir: libs/port"
...
...
@@ -631,7 +680,10 @@ dnl
dnl Usage: WINE_CONFIG_EXTRA_DIR(dirname)
dnl
AC_DEFUN([WINE_CONFIG_EXTRA_DIR],
[AC_CONFIG_COMMANDS([$1],[test -d "$1" || { AC_MSG_NOTICE([creating $1]); AS_MKDIR_P("$1"); }])])
[AC_CONFIG_COMMANDS([$1],[test -d "$1" || { AC_MSG_NOTICE([creating $1]); AS_MKDIR_P("$1"); }])dnl
wine_fn_append_rule \
"clean::
\$(RM) \$(CLEAN_FILES:%=[$1]/%)"])
dnl **** Create symlinks from config.status ****
dnl
...
...
configure
View file @
83558875
This diff is collapsed.
Click to expand it.
configure.ac
View file @
83558875
This diff is collapsed.
Click to expand it.
libs/wine/Makefile.in
View file @
83558875
...
...
@@ -122,8 +122,9 @@ version.c: dummy
$(RELPATH)
:
@
cd
$(TOOLSDIR)
/tools
&&
$(MAKE)
relpath
$(TOOLSEXT)
# Make sure that make_makefiles sees the
install
rules
# Make sure that make_makefiles sees the
generated
rules
install install-lib
::
install install-dev
::
clean
::
@LIBWINE_RULES@
tools/make_makefiles
View file @
83558875
...
...
@@ -320,8 +320,8 @@ sub parse_makefile($)
{
my
$var
=
$1
;
$make
{
$var
}
=
$2
;
push
@
{
$make
{
"=flags"
}},
"implib"
if
$var
eq
"IMPORTLIB"
;
push
@
{
$make
{
"=flags"
}},
"manpage"
if
$var
eq
"MANPAGE"
;
$
{
$make
{
"=flags"
}}{
"implib"
}
=
1
if
$var
eq
"IMPORTLIB"
;
$
{
$make
{
"=flags"
}}{
"manpage"
}
=
1
if
$var
eq
"MANPAGE"
;
next
;
}
if
(
/^\s*(BISON_SRCS|LEX_SRCS|IDL_[CHIPRS]_SRCS|IDL_TLB_SRCS|IMPLIB_SRCS|C_SRCS|OBJC_SRCS|MC_SRCS|RC_SRCS|PO_SRCS|SVG_SRCS|PROGRAMS)\s*=\s*(.*)/
)
...
...
@@ -329,14 +329,15 @@ sub parse_makefile($)
my
$var
=
$1
;
my
@list
=
split
(
/\s+/
,
$2
);
$make
{
$var
}
=
\
@list
;
push
@
{
$make
{
"=flags"
}},
"mc"
if
$var
eq
"MC_SRCS"
;
push
@
{
$make
{
"=flags"
}},
"po"
if
$var
eq
"PO_SRCS"
;
push
@
{
$make
{
"=flags"
}},
"staticimplib"
if
$var
eq
"IMPLIB_SRCS"
;
$
{
$make
{
"=flags"
}}{
"mc"
}
=
1
if
$var
eq
"MC_SRCS"
;
$
{
$make
{
"=flags"
}}{
"po"
}
=
1
if
$var
eq
"PO_SRCS"
;
$
{
$make
{
"=flags"
}}{
"staticimplib"
}
=
1
if
$var
eq
"IMPLIB_SRCS"
;
$
{
$make
{
"=flags"
}}{
"clean"
}
=
1
if
$var
=~
/IDL_[CHIPRS]_SRCS|IDL_TLB_SRCS|PROGRAMS/
;
next
;
}
if
(
/(install-lib|install-dev)\s*:/
)
if
(
/(install-lib|install-dev
|clean
)\s*:/
)
{
push
@
{
$make
{
"=flags"
}},
$
1
;
$
{
$make
{
"=flags"
}}{
$1
}
=
1
;
next
;
}
if
(
/^\s*(TOPSRCDIR|TOPOBJDIR|SRCDIR|VPATH)\s*=\s*(.*)/
)
...
...
@@ -347,8 +348,8 @@ sub parse_makefile($)
if
(
$file
=~
/^programs\/([^\/]+)\/Makefile/
)
{
push
@
{
$make
{
"=flags"
}},
"install"
unless
$dont_install
{
$1
};
push
@
{
$make
{
"=flags"
}},
"installbin"
if
$bin_install
{
$1
};
$
{
$make
{
"=flags"
}}{
"install"
}
=
1
unless
$dont_install
{
$1
};
$
{
$make
{
"=flags"
}}{
"installbin"
}
=
1
if
$bin_install
{
$1
};
}
return
%
make
;
...
...
@@ -439,7 +440,7 @@ sub update_makefiles(@)
my
$rules
=
$make
{
"=rules"
};
my
$args
=
""
;
my
$is_win16
=
$make
{
"MODULE"
}
&&
(
$make
{
"MODULE"
}
=~
/16$/
||
$modules16
{
$make
{
"MODULE"
}});
my
$flag_args
=
defined
$make
{
"=flags"
}
?
",["
.
join
(
","
,
sort
@
{
$make
{
"=flags"
}})
.
"]"
:
""
;
my
$flag_args
=
defined
$make
{
"=flags"
}
?
",["
.
join
(
","
,
sort
keys
%
{
$make
{
"=flags"
}})
.
"]"
:
""
;
if
(
$rules
eq
$makerules
{
"MAKE_DLL_RULES"
})
{
(
my
$name
=
$file
)
=~
s/^dlls\/(.*)\/Makefile/$1/
;
...
...
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