https://github.com/davidcsterratt/KappaNEURON
Revision 6a88c934b3f78ff0a213b88a04e6e7e6efa6df3d authored by David C Sterratt on 06 January 2017, 14:37:31 UTC, committed by David C Sterratt on 06 January 2017, 14:37:31 UTC
1 parent 9aa8f57
Raw File
Tip revision: 6a88c934b3f78ff0a213b88a04e6e7e6efa6df3d authored by David C Sterratt on 06 January 2017, 14:37:31 UTC
Added pulling of aclocal
Tip revision: 6a88c93
Makefile
# .PHONY test: all
#	make -C test/test_ca_pulse test

PREFIX=/usr/local

build_py:
	python2.7 setup.py build

.PHONY test: build_py
	./test/nrnivmodl.py
	python2.7 -m unittest test.TestCaAccumulation.test_injectCalcium && \
	python2.7 -m unittest test.TestCaAccumulation.test_injectCalciumGHK && \
	python2.7 -m unittest test.TestCaAccumulation.test_injectCalciumPump && \
	python2.7 -m unittest test.TestCaAccumulation.test_injectCalciumPumpGHK && \
	python2.7 -m unittest test.TestCaAccumulation.test_injectCalciumPump2 && \
	python2.7 -m unittest test.TestCaAccumulation.test_injectCalciumPump2k2 && \
	python2.7 -m unittest test.TestCaAccumulation.test_twoMembraneSpecies && \
	python2.7 -m unittest test.TestCaAccumulation.test_twoMembraneSpeciesOneUncharged && \
	echo "All tests passed"

install:
	python2.7 setup.py install --prefix=$(PREFIX)

back to top