source: rtems-schedsim/schedsim/shell/schedsim_priority/Makefile.am @ 9077d3c

Last change on this file since 9077d3c was 9077d3c, checked in by Joel Sherrill <joel.sherrill@…>, on 05/17/11 at 19:31:08

2011-05-17 Joel Sherrill <joel.sherrill@…>

  • Makefile.am: Merge and update code. Simulators for Deterministic Priority and SMP Simple Schedulers now work.
  • ChangeLog?, smp_stub.c, scenarios/script01.expected, scenarios/script01.output, scenarios/script01.scen, scenarios/script02.expected, scenarios/script02.output, scenarios/script02.scen, scenarios/script03.expected, scenarios/script03.output, scenarios/script03.scen, scenarios/script04.expected, scenarios/script04.output, scenarios/script04.scen, scenarios/script05.expected, scenarios/script05.output, scenarios/script05.scen, scenarios/script06.expected, scenarios/script06.output, scenarios/script06.scen: New files.
  • scenarios/script01, scenarios/script02, scenarios/script03, scenarios/script04, scenarios/script05, scenarios/script06: Removed.
  • Property mode set to 100644
File size: 1.2 KB
Line 
1##
2## $Id$
3##
4
5bin_PROGRAMS = schedsim
6schedsim_SOURCES = config.c \
7    schedsim.cc wrap_thread_dispatch.c printheir_executing.c
8
9if HAS_SMP
10schedsim_SOURCES += smp_stub.c
11endif
12cpukitdir=@rtems_srcdir@/cpukit
13schedsim_CPPFLAGS  = -I$(top_builddir)/score/include
14schedsim_CPPFLAGS += -I$(srcdir)/sched_cpu
15schedsim_CPPFLAGS += -I$(srcdir)/../../rtems
16schedsim_CPPFLAGS += -I$(cpukitdir)/include
17schedsim_CPPFLAGS += -I$(cpukitdir)/score/include
18schedsim_CPPFLAGS += -I$(cpukitdir)/score/inline
19schedsim_CPPFLAGS += -I$(cpukitdir)/rtems/include
20schedsim_CPPFLAGS += -I$(cpukitdir)/rtems/inline
21schedsim_CPPFLAGS += -I$(cpukitdir)/sapi/include
22schedsim_CPPFLAGS += -I$(cpukitdir)/sapi/inline
23schedsim_CPPFLAGS += -I$(cpukitdir)/libcsupport/include
24schedsim_CPPFLAGS += -I$(cpukitdir)/libmisc/stringto
25schedsim_CPPFLAGS += -I$(srcdir)/../../rtems/sched_cpu
26schedsim_CPPFLAGS += -I$(srcdir)/../shared/include
27schedsim_CPPFLAGS += -I$(srcdir)/../shared
28
29schedsim_LDFLAGS =-Wl,--wrap=_Thread_Dispatch
30## schedsim_LDADD +=-Wl,--start-group
31schedsim_LDADD = ../shared/libschedsim.a
32schedsim_LDADD += ../../rtems/librtems.a
33schedsim_LDADD += ../shared/libschedsim.a
34## schedsim_LDADD +=-Wl,--end-group
35
36include $(top_srcdir)/../automake/host.am
Note: See TracBrowser for help on using the repository browser.