source: rtems/c/src/exec/wrapup/rtems/Makefile.in @ bfa613b

4.104.114.84.95
Last change on this file since bfa613b was bfa613b, checked in by Joel Sherrill <joel.sherrill@…>, on 12/22/97 at 15:06:49

Added lines to build sizeinfo.txt which is automatically generated now
by size_rtems.

  • Property mode set to 100644
File size: 1.2 KB
RevLine 
[254b4450]1#
2#  $Id$
3#
4
5@SET_MAKE@
6srcdir = @srcdir@
7top_srcdir = @top_srcdir@
[674c900]8VPATH = @srcdir@
9RTEMS_ROOT = @RTEMS_ROOT@
10PROJECT_ROOT = @PROJECT_ROOT@
11RTEMS_CUSTOM = $(RTEMS_ROOT)/make/custom/$(RTEMS_BSP).cfg
[254b4450]12
13CPU_OBJS=$(wildcard ../../score/cpu/$(RTEMS_CPU)/$(ARCH)/*.rel)
14CORE_OBJS=$(wildcard ../../score/src/$(ARCH)/*.o)
15SAPI_OBJS=$(wildcard ../../sapi/src/$(ARCH)/*.o)
16RTEMS_OBJS=$(wildcard ../../rtems/src/$(ARCH)/*.o)
17
18OBJS=$(CPU_OBJS) $(CORE_OBJS) $(RTEMS_OBJS) $(SAPI_OBJS)
19LIB=$(ARCH)/librtems.a
20
21include $(RTEMS_CUSTOM)
22include $(PROJECT_ROOT)/make/lib.cfg
23
24#
25# (OPTIONAL) Add local stuff here using +=
26#
27
28DEFINES  +=
29CPPFLAGS +=
30CFLAGS   +=
31
32LD_PATHS  +=
33LD_LIBS   +=
34LDFLAGS   +=
35
36#
37# Add your list of files to delete here.  The config files
38#  already know how to delete some stuff, so you may want
39#  to just run 'make clean' first to see what gets missed.
40#  'make clobber' already includes 'make clean'
41#
42
43CLEAN_ADDITIONS +=
44CLOBBER_ADDITIONS +=
45
46$(LIB): ${OBJS}
47        $(make-library)
[bfa613b]48        cd $(PROJECT_ROOT) ; \
49            $(PROJECT_RELEASE)/bin/size_rtems $(RTEMS_CPU) $(RTEMS_BSP) \
50                >$(PROJECT_RELEASE)/lib/sizeinfo.txt
[254b4450]51
52all:    ${ARCH} $(SRCS) $(LIB)
53        $(INSTALL_VARIANT) -m 644 $(LIB) ${PROJECT_RELEASE}/lib
54
Note: See TracBrowser for help on using the repository browser.