summaryrefslogtreecommitdiffstats
path: root/doc/bsp_howto/makefiles.t
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1998-10-12 21:24:52 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1998-10-12 21:24:52 +0000
commitabfbfa7c5a4e7dd2e0bd3e774d9be41275bacdc1 (patch)
treeac0bbe99a0fa43b6f04e82ac14e900e8224c4ae7 /doc/bsp_howto/makefiles.t
parentChanged commands for installing numerous files to include $(SRCDIR). (diff)
downloadrtems-abfbfa7c5a4e7dd2e0bd3e774d9be41275bacdc1.tar.bz2
Changed section numbers.
Diffstat (limited to 'doc/bsp_howto/makefiles.t')
-rw-r--r--doc/bsp_howto/makefiles.t12
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/bsp_howto/makefiles.t b/doc/bsp_howto/makefiles.t
index e13a6f3e40..cee9930415 100644
--- a/doc/bsp_howto/makefiles.t
+++ b/doc/bsp_howto/makefiles.t
@@ -6,9 +6,9 @@
@c $Id$
@c
-@chapter = Makefiles
+@chapter Makefiles
-@subsection = Makefiles Used During The BSP Building Process
+@section Makefiles Used During The BSP Building Process
There's a makefile template in each directory of a BSP. They are called
"makefile.in" and are processed when building RTEMS for a given BSP. One
@@ -51,7 +51,7 @@ process, usually in your <the RTEMS build
directory>/c/src/lib/libbsp/<your BSP family>/<your BSP>/<your driver>
directory) by hand.
-@subsection = Makefiles Used Both During The BSP Design and its Use
+@section Makefiles Used Both During The BSP Design and its Use
A BSP must go with his configuration file. The configuration files can be
found under $RTEMS_ROOT/c/make/custom. The configuration file is taken
@@ -92,9 +92,9 @@ ifeq ($(RTEMS_USE_GCC272),yes)
else
define make-exe
- $(CC) $(CFLAGS) $(CFLAGS_LD) -o $(basename $@).exe $(LINK_OBJS)
- $(NM) -g -n $(basename $@).exe > $(basename $@).num
- $(SIZE) $(basename $@).exe
+ $(CC) $(CFLAGS) $(CFLAGS_LD) -o $(basename $@@).exe $(LINK_OBJS)
+ $(NM) -g -n $(basename $@@).exe > $(basename $@@).num
+ $(SIZE) $(basename $@@).exe
endif
@end example