source: rtems/c/src/lib/libbsp/powerpc/score603e/tod/Makefile.in @ 9c448e1

4.104.114.84.95
Last change on this file since 9c448e1 was 9c448e1, checked in by Joel Sherrill <joel.sherrill@…>, on 02/19/99 at 00:22:33

BSP for Vista Score603e added.

  • Property mode set to 100644
File size: 1.2 KB
Line 
1#
2#  $Id$
3#
4
5@SET_MAKE@
6srcdir = @srcdir@
7VPATH = @srcdir@
8RTEMS_ROOT = @top_srcdir@
9PROJECT_ROOT = @PROJECT_ROOT@
10
11INSTALL = @INSTALL@
12
13PGM=${ARCH}/tod.rel
14
15# C source names, if any, go here -- minus the .c
16C_PIECES=$(TOD_PIECES)
17C_FILES=$(C_PIECES:%=%.c)
18C_O_FILES=$(C_PIECES:%=${ARCH}/%.o)
19
20H_FILES=
21
22SRCS=$(C_FILES) $(H_FILES)
23OBJS=$(C_O_FILES)
24
25include $(RTEMS_ROOT)/make/custom/$(RTEMS_BSP).cfg
26include $(RTEMS_ROOT)/make/leaf.cfg
27
28# First and second generation use different RTC chips :(
29ifeq ($(SCORE603E_GENERATION),1)
30TOD_PIECES=tod_g1
31else
32ifeq ($(SCORE603E_GENERATION),2)
33TOD_PIECES=tod
34endif # generation 2
35endif # generation 1
36
37#
38# (OPTIONAL) Add local stuff here using +=
39#
40
41DEFINES  +=
42CPPFLAGS +=
43CFLAGS   +=
44
45LD_PATHS  +=
46LD_LIBS   +=
47LDFLAGS   +=
48
49#
50# Add your list of files to delete here.  The config files
51#  already know how to delete some stuff, so you may want
52#  to just run 'make clean' first to see what gets missed.
53#  'make clobber' already includes 'make clean'
54#
55
56CLEAN_ADDITIONS +=
57CLOBBER_ADDITIONS +=
58
59${PGM}: ${SRCS} ${OBJS}
60        $(make-rel)
61
62all:    ${ARCH} $(SRCS) $(PGM)
63
64# the .rel file built here will be put into libbsp.a by ../wrapup/Makefile
65install:  all
Note: See TracBrowser for help on using the repository browser.