1 |
# $Id$ |
2 |
|
3 |
# This makefile automatically finds, calculates dependencies, compiles |
4 |
# and makes a static library from all C++ files found in the directories |
5 |
# under ${L_SRC_DIR} (see below). Files and even whole directory trees |
6 |
# under ${L_SRC_DIR} can be skipped by postfixing the name with a "-". |
7 |
|
8 |
# Matt Davies 04/08/03 |
9 |
|
10 |
DEFAULT_TARGET := libescriptcpp.so pyc |
11 |
|
12 |
L_PYTH_DIR := $(ESYS_ROOT)/esys/escript |
13 |
|
14 |
INSTALL_PYTH := ./lib/py_src/__init__.pyc ./lib/py_src/linearPDEs.pyc ./lib/py_src/pdetools.pyc ./lib/py_src/util.pyc ./lib/py_src/escript.pyc ./lib/py_src/modelframe.pyc ./lib/py_src/timeseries.pyc |
15 |
|
16 |
INSTALL_LIB := ./lib/libescriptcpp.so |
17 |
|
18 |
PACKAGES := esysUtils python23 boostStatic |
19 |
|
20 |
L_SRC_DIR:= ./src ./py_src |
21 |
|
22 |
include $(ESYS_ROOT)/make/Makefile.default |