summaryrefslogtreecommitdiffstats
path: root/schedsim/schedsim_priority/Makefile
blob: b92e4eac9f1de4cfbd60e63a0e8b232b474b126d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#
#  $Id$
#

PREFIX=/home/jennifer/rtems-head-work/bsp-install/
OBJS = config.o printheir_executing.o schedsim.o wrap_thread_dispatch.o
CPPFLAGS = -I${PREFIX}/include/schedsim
LDFLAGS = -L${PREFIX}/lib
LDFLAGS += -Wl,--wrap=_Thread_Dispatch

all:    schedsim

schedsim: $(OBJS)
	g++ -o schedsim $(OBJS) $(LDFLAGS) -lschedsim -lrtems

clean:
	rm -f *.o schedsim