source: rtems/c/src/lib/libbsp/unix/posix/Makefile.am @ 64eb0c7

4.104.115
Last change on this file since 64eb0c7 was 64eb0c7, checked in by Ralf Corsepius <ralf.corsepius@…>, on 09/29/08 at 10:19:37

2008-09-29 Ralf Corsépius <ralf.corsepius@…>

  • Makefile.am: Eliminate *_SOURCES.
  • Property mode set to 100644
File size: 1.4 KB
Line 
1##
2## $Id$
3##
4
5ACLOCAL_AMFLAGS = -I ../../../../aclocal
6
7EXEEXT =
8
9# wrapup is the one that actually builds and installs the library
10# from the individual .rel files built in other directories
11SUBDIRS = . tools
12
13include $(top_srcdir)/../../../../automake/compile.am
14include $(top_srcdir)/../../bsp.am
15
16include_bspdir = $(includedir)/bsp
17
18dist_project_lib_DATA = bsp_specs
19
20include_HEADERS = include/bsp.h
21include_HEADERS += include/tm27.h
22
23nodist_include_HEADERS = include/bspopts.h
24nodist_include_bsp_HEADERS = ../../shared/include/bootcard.h
25DISTCLEANFILES = include/bspopts.h
26
27nodist_include_HEADERS += ../../shared/include/coverhd.h
28
29project_lib_DATA =
30noinst_LIBRARIES = libbsp.a
31libbsp_a_SOURCES =
32
33# startup
34libbsp_a_SOURCES += startup/bspclean.c ../../shared/bsplibc.c \
35    ../../shared/bsppredriverhook.c ../../shared/bsppretaskinghook.c \
36    startup/bspstart.c startup/bsppost.c startup/bspgetworkarea.c \
37    startup/setvec.c ../../shared/bootcard.c
38libbsp_a_SOURCES += startup/main.c
39
40# clock
41libbsp_a_SOURCES += clock/clock.c
42# console
43libbsp_a_SOURCES += console/console.c console/console-io.c
44# timer
45libbsp_a_SOURCES += timer/timer.c
46
47if HAS_MP
48# shmsupp
49libbsp_a_SOURCES += shmsupp/addrconv.c shmsupp/getcfg.c \
50    shmsupp/cause_intr.c shmsupp/lock.c shmsupp/mpisr.c
51endif
52
53EXTRA_DIST = times
54
55include $(srcdir)/preinstall.am
56include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.