mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-24 06:30:19 +00:00
0017180e70
We might just use symlinks here, but I'm afraid of possible portability issues. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@156235 91177308-0d34-0410-b5e6-96231b3b80d8
10 lines
301 B
Plaintext
10 lines
301 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,
|
|
[${llvm_src}/autoconf/mkinstalldirs `dirname $1`
|
|
${SHELL} ${llvm_src}/autoconf/install-sh -m 0644 -c ${srcdir}/$1 $1])
|
|
])
|