source: rtems/cpukit/libmisc/mw-fb/Makefile.am @ 152b1e3

4.104.114.84.95
Last change on this file since 152b1e3 was 152b1e3, checked in by Joel Sherrill <joel.sherrill@…>, on 08/30/00 at 08:21:24

2000-08-26 Rosimildo da Silva <rdasilva@…>

  • Added generic Micro FrameBuffer? interface for MicroWindows?. This interface allows MicroWindows? to under RTEMS. A sample driver has been developed for the pc386 BSP. See pc386/fb_vga.c as a sample.
  • Added Uniform Input Device interface for MicroWindows?. See PC386 bsp for sample drivers for mouse and keyboard (console).
  • mw-bf: New directory.
  • Makefile.am, configure.in, wrapup/Makefile.am: Account for mw-fb.
  • mw-fb/Makefile.am: New file.
  • mw-fb/mw_fb.c: New file.
  • mw-fb/mw_fb.h: New file.
  • mw-fb/mw_uid.c: New file.
  • mw-fb/mw_uid.h: New file.
  • Property mode set to 100644
File size: 790 bytes
RevLine 
[152b1e3]1##
2##  $Id$
3##
4
5AUTOMAKE_OPTIONS = foreign 1.4
6
7LIBNAME = libmw-fb-tmp
8LIB = ${ARCH}/${LIBNAME}.a
9
10C_FILES = mw_fb.c mw_uid.c
11C_O_FILES = $(C_FILES:%.c=${ARCH}/%.o)
12
13H_FILES = mw_fb.h mw_uid.h
14noinst_HEADERS = $(H_FILES)
15
16SRCS = $(C_FILES) $(H_FILES)
17OBJS = $(C_O_FILES)
18
19include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
20include $(top_srcdir)/../../../automake/lib.am
21
22PREINSTALL_FILES = $(PROJECT_INCLUDE)/rtems $(H_FILES:%=$(PROJECT_INCLUDE)/rtems/%)
23
24$(PROJECT_INCLUDE)/rtems:
25        @$(mkinstalldirs) $@
26$(PROJECT_INCLUDE)/rtems/%.h: %.h
27        $(INSTALL_DATA) $< $@
28
29#
30# (OPTIONAL) Add local stuff here using +=
31#
32
33${LIB}: ${OBJS}
34        $(make-library)
35
36all: ${ARCH} $(PREINSTALL_FILES) $(LIB) $(TMPINSTALL_FILES)
37
38EXTRA_DIST += $(C_FILES) $(H_FILES)
39
40include $(top_srcdir)/../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.