1
ifndef $(ROOT)
2
ROOT=$(shell pwd)/..
3
endif
4
5
6
all: ModulePath reqs models
7
8
ModulePath:
9
echo "$(ROOT)/bin/python-module" > ModulePath
10
11
reqs:
12
$(MAKE) -C .. libs-float python-module
13
14
models: ;
15
16
clean: ;