Last change
on this file since 8877 was
8763,
checked in by steve, 12 years ago
|
Added in xllcorner and yllcorner into fitsmooth (caused a problem on cairns demo)
|
File size:
798 bytes
|
Line | |
---|
1 | ### |
---|
2 | # PyMetis Makefile |
---|
3 | # |
---|
4 | |
---|
5 | ### |
---|
6 | # Config |
---|
7 | # |
---|
8 | COPTIONS = -fPIC |
---|
9 | |
---|
10 | METIS_DIR = metis-4.0 |
---|
11 | |
---|
12 | ### |
---|
13 | # Build |
---|
14 | # |
---|
15 | |
---|
16 | pymetis: metis pymetis_module |
---|
17 | |
---|
18 | metis: |
---|
19 | make -C $(METIS_DIR) |
---|
20 | |
---|
21 | pymetis_module: |
---|
22 | (cd pymetis; METIS_DIR=$(METIS_DIR) python setup.py build; sh get_module) |
---|
23 | |
---|
24 | for_win32: metis_win32 pymetis_module_win32 |
---|
25 | |
---|
26 | metis_win32: |
---|
27 | make -C win32 METIS_DIR=$(METIS_DIR) |
---|
28 | ########make -C $(METIS_DIR)/Lib is implied by make -C win32 |
---|
29 | make -C $(METIS_DIR)/Programs |
---|
30 | make -C $(METIS_DIR)/Test |
---|
31 | |
---|
32 | pymetis_module_win32: |
---|
33 | (cd pymetis; METIS_DIR=$(METIS_DIR) python setup.py build --compiler=mingw32; sh get_module) |
---|
34 | |
---|
35 | ### |
---|
36 | # Clean |
---|
37 | # |
---|
38 | |
---|
39 | clean: |
---|
40 | make -C $(METIS_DIR) clean |
---|
41 | make -C win32 clean |
---|
42 | -(cd pymetis; rm -rf build) |
---|
43 | -(cd pymetis; rm *~) |
---|
44 | -rm *~ |
---|
45 | |
---|
46 | realclean: clean |
---|
47 | make -C $(METIS_DIR) realclean |
---|
48 | -rm -f metis.so |
---|
49 | -rm -f metis.pyd |
---|
Note: See
TracBrowser
for help on using the repository browser.