source: rtems/c/src/libmisc/mw-fb/Makefile.am @ 620e8263

4.104.114.84.95
Last change on this file since 620e8263 was 620e8263, checked in by Joel Sherrill <joel.sherrill@…>, on 02/05/01 at 18:26:26

2001-02-03 Ralf Corsepius <corsepiu@…>

  • untar/Makefile.am, monitor/Makefile.am, dummy/Makefile.am, devnull/Makefile.am, dumpbuf/Makefile.am, mw-fb/Makefile.am, stackchk/Makefile.am, rtmonuse/Makefile.am, cpuuse/Makefile.am: Apply include_*HEADERS instead of H_FILES.
  • Property mode set to 100644
File size: 865 bytes
Line 
1##
2##  $Id$
3##
4
5AUTOMAKE_OPTIONS = foreign 1.4
6
7include_rtemsdir = $(includedir)/rtems
8
9LIBNAME = libmw-fb-tmp
10LIB = ${ARCH}/${LIBNAME}.a
11
12C_FILES = mw_fb.c mw_uid.c
13C_O_FILES = $(C_FILES:%.c=${ARCH}/%.o)
14
15include_rtems_HEADERS = mw_fb.h mw_uid.h
16
17SRCS = $(C_FILES)
18OBJS = $(C_O_FILES)
19
20include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
21include $(top_srcdir)/../../../automake/compile.am
22include $(top_srcdir)/../../../automake/lib.am
23
24PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems \
25    $(include_rtems_HEADERS:%=$(PROJECT_INCLUDE)/rtems/%)
26
27$(PROJECT_INCLUDE)/rtems:
28        @$(mkinstalldirs) $@
29$(PROJECT_INCLUDE)/rtems/%.h: %.h
30        $(INSTALL_DATA) $< $@
31
32#
33# (OPTIONAL) Add local stuff here using +=
34#
35
36${LIB}: ${OBJS}
37        $(make-library)
38
39all: ${ARCH} $(PREINSTALL_FILES) $(LIB) $(TMPINSTALL_FILES)
40
41EXTRA_DIST = $(C_FILES)
42
43include $(top_srcdir)/../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.