diff examples/build_Make.params @ 436:f44d40e6cdd3

Improve makefile build tools
author gthomas
date Mon, 25 Nov 2002 23:28:08 +0000
parents
children e68cf4daeda4
line wrap: on
line diff
new file mode 100644
--- /dev/null
+++ b/examples/build_Make.params
@@ -0,0 +1,36 @@
+#! /bin/sh
+
+# This script will set up a Makefile fragment with 
+# platform specifics.  This fragement can be used by
+# the automatically generated Makefile (via the script
+# 'build_Makefile')
+
+# Copied from 'makefile' the "install" tree
+
+HOME=${1-`pwd`}
+if [ ! -d ${HOME}/install ]; then
+  echo "Not an eCos install tree"
+  echo "usage: <eCos_repository>/build_Make.params [<eCos_install_dir>]"
+  exit
+fi
+
+cat <<EOF >Make.params
+
+# Copied from 'makefile' in the "install" tree
+
+EOF
+
+grep export ${HOME}/makefile >>Make.params
+
+cat <<EOF >>Make.params
+
+#
+# Target specific flags, etc.
+#
+
+EOF
+
+cat ${HOME}/install/include/pkgconf/ecos.mak >>Make.params
+
+
+