mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 15:11:24 +00:00
2fbf9e2fda
Teach autoconf/configure.ac to AC_SUBST several additional values in Makefile.config to make them available to Makefile code. These will be useful to generate CMake package modules from the Makefile build. Contributed by Brad King. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@201052 91177308-0d34-0410-b5e6-96231b3b80d8
6 lines
119 B
Plaintext
6 lines
119 B
Plaintext
# Combine AC_DEFINE and AC_SUBST
|
|
AC_DEFUN([LLVM_DEFINE_SUBST], [
|
|
AC_DEFINE([$1], [$2], [$3])
|
|
AC_SUBST([$1], ['$2'])
|
|
])
|