reordering Makefile creation
This commit is contained in:
parent
7b27d430ed
commit
9a40169867
1 changed files with 17 additions and 2 deletions
|
|
@ -34,5 +34,20 @@ AC_TYPE_SIZE_T
|
||||||
dnl Checks for library functions.
|
dnl Checks for library functions.
|
||||||
AC_CHECK_FUNCS(select)
|
AC_CHECK_FUNCS(select)
|
||||||
|
|
||||||
AC_OUTPUT(src/obsolete/Makefile doc/Makefile src/Makefile src/utils/Makefile src/other/Makefile win/Makefile src/gp/Makefile src/es/Makefile src/ga/Makefile test/Makefile contrib/Makefile Makefile app/Makefile app/gprop/Makefile)
|
AC_OUTPUT
|
||||||
|
(
|
||||||
|
Makefile
|
||||||
|
app/Makefile
|
||||||
|
app/gprop/Makefile
|
||||||
|
contrib/Makefile
|
||||||
|
doc/Makefile
|
||||||
|
src/Makefile
|
||||||
|
src/es/Makefile
|
||||||
|
src/ga/Makefile
|
||||||
|
src/gp/Makefile
|
||||||
|
src/obsolete/Makefile
|
||||||
|
src/other/Makefile
|
||||||
|
src/utils/Makefile
|
||||||
|
test/Makefile
|
||||||
|
win/Makefile
|
||||||
|
)
|
||||||
Reference in a new issue