Parallel Programming - Stuff happened
[matches/honours.git] / course / semester2 / pprog / assignment1 / Makefile
1 # Makefile to build all programs
2
3 all : single-thread/nbody mthread/nbody openmp/nbody
4
5 single-thread/nbody :
6         make -C single-thread
7
8 mthread/nbody :
9         make -C mthread
10
11 openmp/nbody : 
12         make -C openmp
13
14 clean :
15         make -C single-thread clean_full
16         make -C mthread clean_full
17         make -C openmp clean_full
18         rm *~

UCC git Repository :: git.ucc.asn.au