source: proiecte/PPPP/ica/test/Makefile @ 138

Last change on this file since 138 was 138, checked in by (none), 14 years ago

PPPP - ica

File size: 316 bytes
Line 
1MATLABROOT=/opt/matlab
2MCC=$(MATLABROOT)/bin/mcc
3MBUILD=$(MATLABROOT)/bin/mbuild
4
5LIBNAME=partest
6
7DRIVER=pardriver.c
8
9MATLAB_FILES=parallel.m
10
11all: create_exec
12
13create_lib: $(MATLAB_FILES)
14        $(MCC) -B csharedlib:lib$(LIBNAME) $^ -v
15
16create_exec:
17        $(MBUILD) $(DRIVER) -L. -l$(LIBNAME) -I.
18
19clean:
20        @rm lib$(LIBNAME)*
Note: See TracBrowser for help on using the repository browser.