source: rtems/c/src/lib/libbsp/i386/pc386/console/Makefile.am @ 2e45a0cb

4.104.114.84.95
Last change on this file since 2e45a0cb was 2e45a0cb, checked in by Joel Sherrill <joel.sherrill@…>, on 06/19/01 at 14:26:29

2001-06-19 Ralf Corsepius <corsepiu@…>

  • configure.in: Add bspopts.h.
  • include/.cvsignore: Add bspopts.h*, stamp-h*.
  • include/Makefile.am: Use *_HEADERS instead of *H_FILES.
  • 3c509/Makefile.am: Dito.
  • console/Makefile.am: Dito.
  • include/bsp.h: Include bspopts.h.
  • Property mode set to 100644
File size: 1.1 KB
Line 
1##
2## $Id$
3##
4
5AUTOMAKE_OPTIONS = foreign 1.4
6
7PGM = $(ARCH)/console.rel
8
9include_rtemsdir = $(includedir)/rtems
10include_rtems_HEADERS = keyboard.h kd.h serial_mouse.h ps2_drv.h fb_vga.h
11
12C_FILES = console.c inch.c outch.c defkeymap.c fb_vga.c keyboard.c \
13    mouse_parser.c pc_keyb.c ps2_mouse.c serial_mouse.c vgainit.c vt.c
14S_FILES = videoAsm.S
15
16console_rel_OBJECTS = $(C_FILES:%.c=$(ARCH)/%.o) $(S_FILES:%.S=$(ARCH)/%.o)
17
18include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
19include $(top_srcdir)/../../../../../../automake/compile.am
20include $(top_srcdir)/../../../../../../automake/lib.am
21
22PREINSTALL_FILES += $(PROJECT_INCLUDE) \
23    $(include_rtems_HEADERS:%=$(PROJECT_INCLUDE)/rtems/%)
24
25#
26# (OPTIONAL) Add local stuff here using +=
27#
28
29$(PGM): $(console_rel_OBJECTS)
30        $(make-rel)
31
32$(PROJECT_INCLUDE)/rtems:
33        $(mkinstalldirs) $@
34
35$(PROJECT_INCLUDE)/rtems/%.h: %.h
36        $(INSTALL_DATA) $< $@
37
38# the .rel file built here will be put into libbsp.a by
39#       ../wrapup/Makefile
40
41all-local: $(PREINSTALL_FILES) $(ARCH) $(console_rel_OBJECTS) $(PGM)
42
43.PRECIOUS: $(PGM)
44
45EXTRA_DIST = $(C_FILES) $(RTEMS_H_FILES) $(S_FILES)
46
47include $(top_srcdir)/../../../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.