mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 11:13:28 +01:00
f19a222b69
per the recommended style guide for autoconf and so that individual autoconf functions can more easily be shared across projects. llvm-svn: 16223
8 lines
281 B
Plaintext
8 lines
281 B
Plaintext
#
|
|
# Configure a Makefile without clobbering it if it exists and is not out of
|
|
# date. This macro is unique to LLVM.
|
|
#
|
|
AC_DEFUN([AC_CONFIG_MAKEFILE],
|
|
[AC_CONFIG_COMMANDS($1,${SHELL} ${srcdir}/autoconf/install-sh -c ${srcdir}/$1 $1,${srcdir}/autoconf/mkinstalldirs `dirname $1`)
|
|
])
|