2010-02-08 Conny Marco Menebrocker <c-m-m@gmx.de>
* xc16x/xc16x.mt: New file. * xc16x/configure.in: Add target_makefile_frag reference. * xc16x/configure: Regenerated.
This commit is contained in:
parent
cf9d06b149
commit
ab608bc732
|
@ -1,3 +1,9 @@
|
||||||
|
2010-02-08 Conny Marco Menebrocker <c-m-m@gmx.de>
|
||||||
|
|
||||||
|
* xc16x/xc16x.mt: New file.
|
||||||
|
* xc16x/configure.in: Add target_makefile_frag reference.
|
||||||
|
* xc16x/configure: Regenerated.
|
||||||
|
|
||||||
2009-12-17 Jeff Johnston <jjohnstn@redhat.com>
|
2009-12-17 Jeff Johnston <jjohnstn@redhat.com>
|
||||||
|
|
||||||
* mn10300/Makefile.in: Add mkdir call to make installation
|
* mn10300/Makefile.in: Add mkdir call to make installation
|
||||||
|
|
|
@ -604,6 +604,7 @@ LIBOBJS
|
||||||
bsp_list
|
bsp_list
|
||||||
script_list
|
script_list
|
||||||
part_specific_obj
|
part_specific_obj
|
||||||
|
target_makefile_frag_path
|
||||||
host_makefile_frag_path
|
host_makefile_frag_path
|
||||||
CCASFLAGS
|
CCASFLAGS
|
||||||
CCAS
|
CCAS
|
||||||
|
@ -674,7 +675,8 @@ PACKAGE_TARNAME
|
||||||
PACKAGE_NAME
|
PACKAGE_NAME
|
||||||
PATH_SEPARATOR
|
PATH_SEPARATOR
|
||||||
SHELL'
|
SHELL'
|
||||||
ac_subst_files='host_makefile_frag'
|
ac_subst_files='host_makefile_frag
|
||||||
|
target_makefile_frag'
|
||||||
ac_user_opts='
|
ac_user_opts='
|
||||||
enable_option_checking
|
enable_option_checking
|
||||||
enable_dependency_tracking
|
enable_dependency_tracking
|
||||||
|
@ -2638,10 +2640,14 @@ test "${CCASFLAGS+set}" = set || CCASFLAGS=$CFLAGS
|
||||||
|
|
||||||
|
|
||||||
host_makefile_frag=${srcdir}/../config/default.mh
|
host_makefile_frag=${srcdir}/../config/default.mh
|
||||||
|
target_makefile_frag=${srcdir}/../config/xc16x.mt
|
||||||
|
|
||||||
host_makefile_frag_path=$host_makefile_frag
|
host_makefile_frag_path=$host_makefile_frag
|
||||||
|
|
||||||
|
|
||||||
|
target_makefile_frag_path=$target_makefile_frag
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -48,6 +48,7 @@ LIB_AM_PROG_AS
|
||||||
|
|
||||||
|
|
||||||
host_makefile_frag=${srcdir}/../config/default.mh
|
host_makefile_frag=${srcdir}/../config/default.mh
|
||||||
|
target_makefile_frag=${srcdir}/../config/xc16x.mt
|
||||||
|
|
||||||
dnl We have to assign the same value to other variables because autoconf
|
dnl We have to assign the same value to other variables because autoconf
|
||||||
dnl doesn't provide a mechanism to substitute a replacement keyword with
|
dnl doesn't provide a mechanism to substitute a replacement keyword with
|
||||||
|
@ -56,6 +57,9 @@ dnl
|
||||||
host_makefile_frag_path=$host_makefile_frag
|
host_makefile_frag_path=$host_makefile_frag
|
||||||
AC_SUBST(host_makefile_frag_path)
|
AC_SUBST(host_makefile_frag_path)
|
||||||
AC_SUBST_FILE(host_makefile_frag)
|
AC_SUBST_FILE(host_makefile_frag)
|
||||||
|
target_makefile_frag_path=$target_makefile_frag
|
||||||
|
AC_SUBST(target_makefile_frag_path)
|
||||||
|
AC_SUBST_FILE(target_makefile_frag)
|
||||||
AC_SUBST(part_specific_obj)
|
AC_SUBST(part_specific_obj)
|
||||||
AC_SUBST(script_list)
|
AC_SUBST(script_list)
|
||||||
AC_SUBST(bsp_list)
|
AC_SUBST(bsp_list)
|
||||||
|
|
|
@ -0,0 +1,3 @@
|
||||||
|
# Dummy target-specific Makefile fragment for XC16X. We can't
|
||||||
|
# use default.mt because it refers to generic source files whose
|
||||||
|
# names conflict with the XC16X-specific sources.
|
Loading…
Reference in New Issue