1 | ######################## -*- Mode: Makefile-Automake -*- ######################
|
---|
2 | ##
|
---|
3 | ## Cforall Version 1.0.0 Copyright (C) 2015 University of Waterloo
|
---|
4 | ##
|
---|
5 | ## The contents of this file are covered under the licence agreement in the
|
---|
6 | ## file "LICENCE" distributed with Cforall.
|
---|
7 | ##
|
---|
8 | ## Makefile.am --
|
---|
9 | ##
|
---|
10 | ## Author : Peter A. Buhr
|
---|
11 | ## Created On : Sun May 31 09:08:15 2015
|
---|
12 | ## Last Modified By : Peter A. Buhr
|
---|
13 | ## Last Modified On : Mon Jan 25 22:31:42 2016
|
---|
14 | ## Update Count : 25
|
---|
15 | ###############################################################################
|
---|
16 |
|
---|
17 | # applies to both programs
|
---|
18 | CFLAGS =
|
---|
19 | AM_CFLAGS = -g -Wall -Wno-unused-function -O2
|
---|
20 | CC = @CFA_BINDIR@/@CFA_NAME@
|
---|
21 |
|
---|
22 | noinst_PROGRAMS = bench$(EXEEXT) ctxswitch-coroutine$(EXEEXT) ctxswitch-thread$(EXEEXT) sched-int$(EXEEXT) monitor$(EXEEXT) csv-data$(EXEEXT)
|
---|
23 |
|
---|
24 | bench$(EXEEXT) :
|
---|
25 | @for ccflags in "-debug" "-nodebug"; do \
|
---|
26 | echo ${CC} ${AM_CFLAGS} ${CFLAGS} ${ccflags} @CFA_FLAGS@ -lrt bench.c;\
|
---|
27 | ${CC} ${AM_CFLAGS} ${CFLAGS} $${ccflags} -lrt bench.c;\
|
---|
28 | ./a.out ; \
|
---|
29 | done ; \
|
---|
30 | rm -f ./a.out ;
|
---|
31 |
|
---|
32 | ctxswitch-coroutine$(EXEEXT):
|
---|
33 | ${CC} ${AM_CFLAGS} ${CFLAGS} ${ccflags} @CFA_FLAGS@ -nodebug -lrt -DN=50000000 CorCtxSwitch.c
|
---|
34 | @rm -f .result.log
|
---|
35 | @for number in 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20; do \
|
---|
36 | ./a.out | tee -a .result.log ; \
|
---|
37 | done
|
---|
38 | @./stat.py .result.log
|
---|
39 | @rm -f a.out .result.log
|
---|
40 |
|
---|
41 | ctxswitch-thread$(EXEEXT):
|
---|
42 | ${CC} ${AM_CFLAGS} ${CFLAGS} ${ccflags} @CFA_FLAGS@ -nodebug -lrt -DN=50000000 ThrdCtxSwitch.c
|
---|
43 | @rm -f .result.log
|
---|
44 | @for number in 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20; do \
|
---|
45 | ./a.out | tee -a .result.log ; \
|
---|
46 | done
|
---|
47 | @./stat.py .result.log
|
---|
48 | @rm -f a.out .result.log
|
---|
49 |
|
---|
50 | sched-int$(EXEEXT):
|
---|
51 | ${CC} ${AM_CFLAGS} ${CFLAGS} ${ccflags} @CFA_FLAGS@ -nodebug -lrt -DN=50000000 SchedInt.c
|
---|
52 | @rm -f .result.log
|
---|
53 | @for number in 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20; do \
|
---|
54 | ./a.out | tee -a .result.log ; \
|
---|
55 | done
|
---|
56 | @./stat.py .result.log
|
---|
57 | @rm -f a.out .result.log
|
---|
58 |
|
---|
59 | monitor$(EXEEXT):
|
---|
60 | ${CC} ${AM_CFLAGS} ${CFLAGS} ${ccflags} @CFA_FLAGS@ -nodebug -lrt -DN=50000000 Monitor.c
|
---|
61 | @rm -f .result.log
|
---|
62 | @for number in 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20; do \
|
---|
63 | ./a.out | tee -a .result.log ; \
|
---|
64 | done
|
---|
65 | @./stat.py .result.log
|
---|
66 | @rm -f a.out .result.log
|
---|
67 |
|
---|
68 | csv-data$(EXEEXT):
|
---|
69 | @${CC} ${AM_CFLAGS} ${CFLAGS} ${ccflags} @CFA_FLAGS@ -nodebug -lrt -quiet -DN=50000000 csv-data.c
|
---|
70 | @./a.out
|
---|
71 | @rm -f ./a.out
|
---|