From: Erik M. <er...@us...> - 2001-10-14 14:49:44
|
Update of /cvsroot/blob/blob In directory usw-pr-cvs1:/tmp/cvs-serv627 Modified Files: configure.in Log Message: Architecture dependent directory (yes, even more cleanups :) Architecture dependent object file Index: configure.in =================================================================== RCS file: /cvsroot/blob/blob/configure.in,v retrieving revision 1.17 retrieving revision 1.18 diff -u -d -r1.17 -r1.18 --- configure.in 2001/10/09 19:24:54 1.17 +++ configure.in 2001/10/14 14:49:41 1.18 @@ -82,6 +82,7 @@ AC_MSG_RESULT(Assabet) AC_DEFINE(ASSABET) AC_DEFINE(USE_SERIAL1) + BLOB_PLATFORM_OBJ="assabet.o" use_cpu="sa1110" use_lcd="no" ;; @@ -89,6 +90,7 @@ AC_MSG_RESULT(Brutus) AC_DEFINE(BRUTUS) AC_DEFINE(USE_SERIAL3) + BLOB_PLATFORM_OBJ="brutus.o" use_cpu="sa1100" use_lcd="no" ;; @@ -96,6 +98,7 @@ AC_MSG_RESULT(CreditLART) AC_DEFINE(CLART) AC_DEFINE(USE_SERIAL3) + BLOB_PLATFORM_OBJ="clart.o" use_cpu="sa1110" use_lcd="no" ;; @@ -103,6 +106,7 @@ AC_MSG_RESULT(LART) AC_DEFINE(LART) AC_DEFINE(USE_SERIAL3) + BLOB_PLATFORM_OBJ="lart.o" use_cpu="sa1100" use_lcd="no" ;; @@ -110,6 +114,7 @@ AC_MSG_RESULT(NESA) AC_DEFINE(NESA) AC_DEFINE(USE_SERIAL3) + BLOB_PLATFORM_OBJ="nesa.o" use_cpu="sa1100" use_lcd="no" ;; @@ -117,6 +122,7 @@ AC_MSG_RESULT(PLEB) AC_DEFINE(PLEB) AC_DEFINE(USE_SERIAL3) + BLOB_PLATFORM_OBJ="pleb.o" use_cpu="sa1100" use_lcd="no" ;; @@ -124,6 +130,7 @@ AC_MSG_RESULT(SHANNON) AC_DEFINE(SHANNON) AC_DEFINE(USE_SERIAL3) + BLOB_PLATFORM_OBJ="shannon.o" use_cpu="sa1100" use_lcd="no" ;; @@ -131,6 +138,7 @@ AC_MSG_RESULT(PTSystem3) AC_DEFINE(PT_SYSTEM3) AC_DEFINE(USE_SERIAL1) + BLOB_PLATFORM_OBJ="system3.o" DIAG_PLATFORM_OBJ="system3.o" use_cpu="sa1110" use_lcd="yes" @@ -139,6 +147,7 @@ AC_MSG_RESULT(unknown) AC_MSG_WARN([Unknown board name, assuming SA1100 with serial 3]) AC_DEFINE(USE_SERIAL3) + BLOB_PLATFORM_OBJ="unknown.o" use_cpu="sa1100" use_lcd="no" ;; @@ -268,7 +277,8 @@ dnl Check wether or not additional platform source code -dnl for diag is needed +dnl for is needed +AC_SUBST(BLOB_PLATFORM_OBJ) AC_SUBST(DIAG_PLATFORM_OBJ) @@ -331,6 +341,7 @@ AC_OUTPUT(Makefile include/Makefile include/blob/Makefile +include/blob/arch/Makefile src/Makefile src/blob/Makefile src/diag/Makefile |