forked from amundson/toy-mt-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
32 lines (23 loc) · 901 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
all : BusyWaitCalibrate OpenMPDemo SingleThreadedDemo
# BusyWaitCalibrate DispatchDemo OpenMPDemo SingleThreadedDemo
BusyWaitCalibrate :
cd BusyWaitCalibration ; ${MAKE} all ; cp BusyWaitCalibrate ..
DispatchDemo :
cd DispatchProcessingDemo ; ${MAKE} all ; cp DispatchDemo ..
OpenMPDemo :
cd OpenMPProcessingDemo ; ${MAKE} all ; cp OpenMPDemo ..
SingleThreadedDemo :
cd SingleThreadedProcessingDemo ; ${MAKE} all ; cp SingleThreadedDemo ..
clean : BusyWaitCalibrate_clean DispatchDemo_clean OpenMPDemo_clean SingleThreadedDemo_clean
BusyWaitCalibrate_clean :
rm -f BusyWaitCalibrate
cd BusyWaitCalibration ; ${MAKE} clean
DispatchDemo_clean :
rm -f DispatchDemo
cd DispatchProcessingDemo ; ${MAKE} clean
OpenMPDemo_clean :
rm -f OpenMPDemo
cd OpenMPProcessingDemo ; ${MAKE} clean
SingleThreadedDemo_clean :
rm -f SingleThreadedDemo
cd SingleThreadedProcessingDemo ; ${MAKE} clean