source: rtems/c/src/lib/libcpu/sh/sh7045/include/Makefile.am @ 3a5fec8

4.104.114.84.95
Last change on this file since 3a5fec8 was 7ae5125, checked in by Joel Sherrill <joel.sherrill@…>, on 08/16/01 at 21:08:28

2001-08-10 Radzislaw Galler <rgaller@…>

  • score/cpu_asm.c (sh_set_irq_priority): Changed interrupt vector number range check and handling of interrupt priority regs to conform SH2 specs.
  • sci/sci_termios.c: New file.
  • include/sci_termios.h: New file.
  • include/Makefile.am (EXTRA_DIST): Added sci_termios.h. (include_sh_HEADERS): Added sci_termios.h.
  • score/ispsh7045.c (isp): Calling an ISR with immediate argument casued negative sign extension for vector numbers of 128 and above. This was fixed.
  • sci/sci.c: Cleaned initialization of SCI registers; added necessary setup for new TERMIOS console cooperation
  • Property mode set to 100644
File size: 841 bytes
Line 
1##
2## $Id$
3##
4
5AUTOMAKE_OPTIONS = foreign 1.4
6
7# NOTE: Unlike other CPUS, we install into a subdirectory to avoid
8#       file name conflicts
9include_shdir = $(includedir)/sh
10include_rtems_scoredir = $(includedir)/rtems/score
11
12include_sh_HEADERS = io_types.h sci.h sh7_pfc.h sh7_sci.h sci_termios.h
13include_rtems_score_HEADERS = ispsh7045.h iosh7045.h
14
15$(PROJECT_INCLUDE)/sh:
16        $(mkinstalldirs) $@
17
18$(PROJECT_INCLUDE)/sh/%.h: %.h
19        $(INSTALL_DATA) $< $@
20
21$(PROJECT_INCLUDE)/rtems/score/%.h: %.h
22        $(INSTALL_DATA) $< $@
23
24TMPINSTALL_FILES += $(PROJECT_INCLUDE)/sh \
25    $(include_sh_HEADERS:%=$(PROJECT_INCLUDE)/sh/%) \
26    $(include_rtems_score_HEADERS:%=$(PROJECT_INCLUDE)/rtems/score/%)
27
28all-local: $(TMPINSTALL_FILES)
29
30EXTRA_DIST = io_types.h sci.h sh7_pfc.h sh7_sci.h sci_termios.h
31
32include $(top_srcdir)/../../../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.