Mercurial > ecos
view examples/build_Make.params @ 594:7df7eb129a74
* src/sys/kern/sockio.c: bsd_getinfo/bsd_setinfo should have
void * args. Silences warnings.
* src/sys/kern/uipc_socket.c (sopoll): Use __FUNCTION__ correctly
for GCC 3.x.
* src/sys/net/if_ethersubr.c: Put comments for stuff after endifs
to silence warnings.
* src/sys/net/if_loop.c: Ditto.
| author | jlarmour |
|---|---|
| date | Wed, 12 Feb 2003 15:29:52 +0000 |
| parents | f44d40e6cdd3 |
| children | e68cf4daeda4 |
line wrap: on
line source
#! /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
