source: rtems/c/src/optman/Makefile.am @ 858ea06c

4.104.115
Last change on this file since 858ea06c was 35150aa, checked in by Joel Sherrill <joel.sherrill@…>, on 09/17/08 at 16:22:40

2008-09-17 Miao Yan <yanmiaobest@…>

  • optman/Makefile.am, optman/preinstall.am: Merge GSOC project code to add simple device only filesystem (devfs), optionally completely drop out filesystem, and to clean up disabling newlib reentrancy support. This dropped 17K from the minimum.exe for sparc/sis and arm/rtl22xx_t now has a 15K code space.
  • optman/no-console.c, optman/no-filesystem.c, optman/no-libio.c: Removed.
  • Property mode set to 100644
File size: 2.1 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
76include $(srcdir)/preinstall.am
77include $(top_srcdir)/automake/local.am
Note: See TracBrowser for help on using the repository browser.