source: rtems/c/src/optman/Makefile.am @ 5129b24

4.104.114.84.95
Last change on this file since 5129b24 was 5129b24, checked in by Joel Sherrill <joel.sherrill@…>, on 06/20/07 at 22:19:38

2007-06-20 Ray Xu <rayx@…>

  • optman/Makefile.am, optman/preinstall.am: Add stubs for file system, console, and libio. This shrinks the memory requirements but Joel has not figured out how best to present this to application space.
  • optman/no-console.c, optman/no-filesystem.c, optman/no-libio.c: New files.
  • Property mode set to 100644
File size: 2.5 KB
Line 
1##
2## $Id$
3##
4
5include $(top_srcdir)/automake/compile.am
6
7EXEEXT =
8
9project_lib_PROGRAMS =
10
11project_lib_PROGRAMS += no-ext.rel
12no_ext_rel_SOURCES = sapi/no-ext.c
13no_ext_rel_CPPFLAGS = $(AM_CPPFLAGS)
14no_ext_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
15
16project_lib_PROGRAMS += no-io.rel
17no_io_rel_SOURCES = sapi/no-io.c
18no_io_rel_CPPFLAGS = $(AM_CPPFLAGS)
19no_io_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
20
21project_lib_PROGRAMS += no-barrier.rel
22no_barrier_rel_SOURCES = rtems/no-barrier.c
23no_barrier_rel_CPPFLAGS = $(AM_CPPFLAGS)
24no_barrier_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
25
26project_lib_PROGRAMS += no-dpmem.rel
27no_dpmem_rel_SOURCES = rtems/no-dpmem.c
28no_dpmem_rel_CPPFLAGS = $(AM_CPPFLAGS)
29no_dpmem_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
30
31project_lib_PROGRAMS += no-event.rel
32no_event_rel_SOURCES = rtems/no-event.c
33no_event_rel_CPPFLAGS = $(AM_CPPFLAGS)
34no_event_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
35
36project_lib_PROGRAMS += no-msg.rel
37no_msg_rel_SOURCES = rtems/no-msg.c
38no_msg_rel_CPPFLAGS = $(AM_CPPFLAGS)
39no_msg_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
40
41project_lib_PROGRAMS += no-mp.rel
42no_mp_rel_SOURCES = rtems/no-mp.c
43no_mp_rel_CPPFLAGS = $(AM_CPPFLAGS)
44no_mp_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
45
46project_lib_PROGRAMS += no-part.rel
47no_part_rel_SOURCES = rtems/no-part.c
48no_part_rel_CPPFLAGS = $(AM_CPPFLAGS)
49no_part_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
50
51project_lib_PROGRAMS += no-region.rel
52no_region_rel_SOURCES = rtems/no-region.c
53no_region_rel_CPPFLAGS = $(AM_CPPFLAGS)
54no_region_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
55
56project_lib_PROGRAMS += no-rtmon.rel
57no_rtmon_rel_SOURCES = rtems/no-rtmon.c
58no_rtmon_rel_CPPFLAGS = $(AM_CPPFLAGS)
59no_rtmon_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
60
61project_lib_PROGRAMS += no-sem.rel
62no_sem_rel_SOURCES = rtems/no-sem.c
63no_sem_rel_CPPFLAGS = $(AM_CPPFLAGS)
64no_sem_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
65
66project_lib_PROGRAMS += no-signal.rel
67no_signal_rel_SOURCES = rtems/no-signal.c
68no_signal_rel_CPPFLAGS = $(AM_CPPFLAGS)
69no_signal_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
70
71project_lib_PROGRAMS += no-timer.rel
72no_timer_rel_SOURCES = rtems/no-timer.c
73no_timer_rel_CPPFLAGS = $(AM_CPPFLAGS)
74no_timer_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
75
76project_lib_PROGRAMS += no-filesystem.rel
77no_filesystem_rel_SOURCES = no-filesystem.c no-libio.c
78no_filesystem_rel_CPPFLAGS = $(AM_CPPFLAGS)
79no_filesystem_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
80
81project_lib_PROGRAMS += no-console.rel
82no_console_rel_SOURCES = no-console.c
83no_console_rel_CPPFLAGS = $(AM_CPPFLAGS)
84no_console_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
85
86include $(srcdir)/preinstall.am
87include $(top_srcdir)/automake/local.am
Note: See TracBrowser for help on using the repository browser.