source: rtems/c/src/lib/libbsp/powerpc/score603e/console/Makefile.in @ c42bd452

4.104.114.84.95
Last change on this file since c42bd452 was c42bd452, checked in by Joel Sherrill <joel.sherrill@…>, on 11/02/99 at 16:05:41

Split console_reserve_resources into its own file to reduce dependencies.
Still need to move debug io routines out.

  • Property mode set to 100644
File size: 1.3 KB
RevLine 
[9c448e1]1#
2#  $Id$
3#
4
5@SET_MAKE@
6srcdir = @srcdir@
[d8ff793]7top_srcdir = @top_srcdir@
[e1d8abb]8top_builddir = ../../..
9subdir = powerpc/score603e/console
[9c448e1]10
[6693a68]11RTEMS_ROOT = @RTEMS_ROOT@
[d8ff793]12PROJECT_ROOT = @PROJECT_ROOT@
13
14VPATH = @srcdir@
15
[6693a68]16PGM = ${ARCH}/console.rel
[9c448e1]17
18# C source names, if any, go here -- minus the .c
[c42bd452]19C_PIECES = 85c30 console consolereserveresources tbl85c30
[6693a68]20C_FILES = $(C_PIECES:%=%.c)
21C_O_FILES = $(C_PIECES:%=${ARCH}/%.o)
[9c448e1]22
[6693a68]23H_FILES =
[9c448e1]24
[6693a68]25SRCS = $(C_FILES) $(H_FILES)
26OBJS = $(C_O_FILES)
[9c448e1]27
[6693a68]28include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
[9c448e1]29include $(RTEMS_ROOT)/make/leaf.cfg
30
[6693a68]31INSTALL_CHANGE = @INSTALL_CHANGE@
32
[9c448e1]33#
34# (OPTIONAL) Add local stuff here using +=
35#
36
[6693a68]37DEFINES +=
[9c448e1]38CPPFLAGS +=
[6693a68]39CFLAGS +=
[9c448e1]40
[6693a68]41LD_PATHS +=
42LD_LIBS +=
43LDFLAGS +=
[9c448e1]44
45#
46# Add your list of files to delete here.  The config files
47#  already know how to delete some stuff, so you may want
48#  to just run 'make clean' first to see what gets missed.
49#  'make clobber' already includes 'make clean'
50#
51
52CLEAN_ADDITIONS +=
53CLOBBER_ADDITIONS +=
54
55${PGM}: ${SRCS} ${OBJS}
56        $(make-rel)
57
[6693a68]58all: ${ARCH} $(SRCS) $(PGM)
[9c448e1]59
60# the .rel file built here will be put into libbsp.a by ../wrapup/Makefile
[6693a68]61install: all
[d8ff793]62
[08b5f55]63Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
[d8ff793]64        cd $(top_builddir) \
65         && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
Note: See TracBrowser for help on using the repository browser.