source: rtems/c/src/lib/libcpu/a29k/timer/Makefile.am @ 21677c0e

4.104.114.84.95
Last change on this file since 21677c0e was 21677c0e, checked in by Joel Sherrill <joel.sherrill@…>, on 01/26/00 at 14:20:08

Patch rtems-rc-20000118-0.diff from Ralf Corsepius <corsepiu@…>
that converts the a29k to automake.

This patch contains

  • An initial merger of the libcpu/a29k stuff you sent yesterday. AFAIS, most code inside them seems to be empty stubs. One file even contains a function called mips_* which might indicate that this part might contain mips code or the code the initial porter used as template for porting. Unfortunately, I don't know anything about the a29k so I can't comment on the details.
  • A dummy bsp_specs to libbsp/29k/portsw
  • An update to the automake files related to the a29k.

Note:

  • This patch is completely untested, because I don't have a toolchain for it.
  • The files in libcpu/a29k include bsp.h => The libbsp vs. libcpu-issue hits again.
  • Property mode set to 100644
File size: 715 bytes
RevLine 
[21677c0e]1##
2## Makefile,v 1.2 1995/05/31 16:56:37 joel Exp
3##
4## @(#)Makefile        03/26/96     1.2
5
6AUTOMAKE_OPTIONS = foreign 1.4
7
8PGM=$(ARCH)/timer.rel
9
10# NOTE: timerisr is normally an assembly file!!!
11
12C_FILES = timer.c timerisr.c
13C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.o)
14
15S_FILES = gettime.S
16S_O_FILES = $(S_FILES:%.S=$(ARCH)/%.o)
17
18OBJS = $(C_O_FILES) $(S_O_FILES)
19
20include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
21include $(top_srcdir)/../../../../../automake/lib.am
22
23#
24# (OPTIONAL) Add local stuff here using +=
25#
26
27$(PGM): $(SRCS) $(OBJS)
28        $(make-rel)
29
30all-local: $(ARCH) $(OBJS) $(PGM)
31
32.PRECIOUS: $(PGM)
33
34EXTRA_DIST = Makefile gettime.S timer.c timerisr.c
35
36include $(top_srcdir)/../../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.