source: rtems/c/src/lib/libbsp/powerpc/motorola_powerpc/console/Makefile.in @ acc25ee

4.104.114.84.95
Last change on this file since acc25ee was acc25ee, checked in by Joel Sherrill <joel.sherrill@…>, on 12/02/99 at 14:31:19

Merged of mcp750 and mvme2307 BSP by Eric Valette <valette@…>.
As part of this effort, the mpc750 libcpu code is now shared with the
ppc6xx.

  • Property mode set to 100644
File size: 1.6 KB
Line 
1#
2#  $Id$
3#
4
5@SET_MAKE@
6srcdir = @srcdir@
7top_srcdir = @top_srcdir@
8top_builddir = ../../..
9subdir = powerpc/mcp750/console
10
11RTEMS_ROOT = @RTEMS_ROOT@
12PROJECT_ROOT = @PROJECT_ROOT@
13
14VPATH = @srcdir@:@srcdir@/../../shared/console:@srcdir@/../../../shared
15
16# C source names, if any, go here -- minus the .c
17C_PIECES = polled_io uart console inch
18C_FILES = $(C_PIECES:%=%.c)
19C_O_FILES = $(C_PIECES:%=${ARCH}/%.o)
20
21H_FILES = $(srcdir)/../../shared/console/consoleIo.h $(srcdir)/../../shared/console/keyboard.h $(srcdir)/../../shared/console/uart.h
22
23# Assembly source names, if any, go here -- minus the .s
24S_PIECES =
25S_FILES = $(S_PIECES:%=%.S)
26S_O_FILES = $(S_FILES:%.S=${ARCH}/%.o)
27
28SRCS = $(C_FILES) $(CC_FILES) $(H_FILES) $(S_FILES)
29OBJS = $(S_O_FILES) $(C_O_FILES)
30
31include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
32include $(RTEMS_ROOT)/make/leaf.cfg
33
34INSTALL_CHANGE = @INSTALL_CHANGE@
35mkinstalldirs = $(SHELL) $(top_srcdir)/@RTEMS_TOPdir@/mkinstalldirs
36
37INSTALLDIRS = $(PROJECT_INCLUDE)/bsp
38
39$(INSTALLDIRS):
40        @$(mkinstalldirs) $(INSTALLDIRS)
41
42CC_PIECES =
43CC_FILES = $(CC_PIECES:%=%.cc)
44CC_O_FILES = $(CC_PIECES:%=${ARCH}/%.o)
45
46#
47# (OPTIONAL) Add local stuff here using +=
48#
49
50CPPFLAGS += -DSTATIC_LOG_ALLOC
51CFLAGS +=
52#
53# Add your list of files to delete here.  The config files
54#  already know how to delete some stuff, so you may want
55
56#  to just run 'make clean' first to see what gets missed.
57#  'make clobber' already includes 'make clean'
58#
59
60all: ${ARCH} $(SRCS) ${OBJS}
61
62Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
63        cd $(top_builddir) \
64         && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
Note: See TracBrowser for help on using the repository browser.