source: rtems/c/src/lib/libbsp/unix/posix/Makefile.am @ 4ba8866

4.104.115
Last change on this file since 4ba8866 was 4ba8866, checked in by Ralf Corsepius <ralf.corsepius@…>, on 09/29/08 at 01:27:11

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

  • Makefile.am: Remove noinst_PROGRAMS (Unused).
  • Property mode set to 100644
File size: 1.9 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 =
31## if HAS_CXX
32## noinst_LIBRARIES += librtemscxx.a
33##
34## librtemscxx_a_SOURCES = startup/no-ctor.c
35##
36## # Install as a separate .$(OBJEXT)
37## project_lib_DATA += no-ctor.$(OBJEXT)
38##
39## # We install the RTEMS constructor as a separate .$(OBJEXT)
40## # so it can be easily place correctly by the compiler config file.
41## project_lib_DATA += rtems-ctor.$(OBJEXT)
42## endif
43
44startup_SOURCES = startup/bspclean.c ../../shared/bsplibc.c \
45    ../../shared/bsppredriverhook.c ../../shared/bsppretaskinghook.c \
46    startup/bspstart.c startup/bsppost.c startup/bspgetworkarea.c \
47    startup/setvec.c ../../shared/bootcard.c
48## for now always using main.c style startup
49##if !HAS_CXX
50startup_SOURCES += startup/main.c
51##endif
52
53clock_SOURCES = clock/clock.c
54console_SOURCES = console/console.c console/console-io.c
55timer_SOURCES = timer/timer.c
56
57if HAS_MP
58shmsupp_SOURCES = shmsupp/addrconv.c shmsupp/getcfg.c \
59    shmsupp/cause_intr.c shmsupp/lock.c shmsupp/mpisr.c
60endif
61
62noinst_LIBRARIES += libbsp.a
63libbsp_a_SOURCES = $(startup_SOURCES) $(clock_SOURCES) \
64    $(console_SOURCES) $(timer_SOURCES) $(shmsupp_SOURCES)
65## if HAS_CXX
66## libbsp_a_SOURCES += startup/rtems-ctor.cc
67## endif
68
69EXTRA_DIST = times
70
71include $(srcdir)/preinstall.am
72include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.