File: Makefile.am

package info (click to toggle)
neuron 7.6.3-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, buster
  • size: 48,268 kB
  • sloc: cpp: 192,952; ansic: 145,860; python: 42,092; sh: 10,507; makefile: 6,816; yacc: 3,259; java: 995; lex: 457; csh: 108; pascal: 37; sed: 5
file content (98 lines) | stat: -rw-r--r-- 2,298 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
neuronhomedir = $(prefix)/share/@PACKAGE@/lib
neuronhomepythondir = $(neuronhomedir)/python

NRNPYTHON_PYMAJOR = @NRNPYTHON_PYMAJOR@
PY2TO3 = @PY2TO3@

nobase_neuronhomepython_DATA = \
\
neuron/doc.py \
neuron/gui.py \
neuron/hclass2.py \
neuron/hclass3.py \
neuron/__init__.py \
neuron/psection.py \
neuron/sections.py \
\
neuron/gui2/__init__.py \
neuron/gui2/plotshape.py \
neuron/gui2/setup_threejs.py \
neuron/gui2/config.py \
neuron/gui2/rangevar.py \
neuron/gui2/utilities.py \
\
neuron/nonvint_block_supervisor.py \
\
neuron/neuroml/__init__.py \
neuron/neuroml/rdxml.py \
neuron/neuroml/xml2nrn.py \
neuron/neuroml/neuroml.py \
neuron/neuroml/metadata.py \
neuron/neuroml/morphml.py \
neuron/neuroml/biophysics.py \
\
neuron/tests/__init__.py \
neuron/tests/test_all.py \
neuron/tests/test_vector.py \
neuron/tests/test_neuron.py \
neuron/tests/test_rxd.py \
neuron/tests/_subclass.py \
\
neuron/crxd/region.py \
neuron/crxd/species.py \
neuron/crxd/rxd.py \
neuron/crxd/reaction.py \
neuron/crxd/rxdsection.py \
neuron/crxd/rxdmath.py \
neuron/crxd/section1d.py \
neuron/crxd/geometry.py \
neuron/crxd/rate.py \
neuron/crxd/node.py \
neuron/crxd/rxdException.py \
neuron/crxd/__init__.py \
neuron/crxd/multiCompartmentReaction.py \
neuron/crxd/nodelist.py \
neuron/crxd/generalizedReaction.py \
neuron/crxd/options.py \
neuron/crxd/gui.py \
neuron/crxd/plugins.py \
neuron/crxd/rangevar.py \
neuron/crxd/dimension3.py \
neuron/crxd/initializer.py \
neuron/crxd/geometry3d/*.* \
\
neuron/rxd/region.py \
neuron/rxd/species.py \
neuron/rxd/rxd.py \
neuron/rxd/reaction.py \
neuron/rxd/rxdsection.py \
neuron/rxd/rxdmath.py \
neuron/rxd/section1d.py \
neuron/rxd/geometry.py \
neuron/rxd/rate.py \
neuron/rxd/node.py \
neuron/rxd/rxdException.py \
neuron/rxd/__init__.py \
neuron/rxd/multiCompartmentReaction.py \
neuron/rxd/nodelist.py \
neuron/rxd/generalizedReaction.py \
neuron/rxd/morphology.py \
neuron/rxd/options.py \
neuron/rxd/gui.py \
neuron/rxd/plugins.py \
neuron/rxd/rangevar.py \
neuron/rxd/dimension3.py \
neuron/rxd/initializer.py \
neuron/rxd/geometry3d/*.* \
\
neuron/help_data.dat

SUBDIRS = neuron

EXTRA_DIST = $(nobase_neuronhomepython_DATA)

#install-data-hook:
#	if test $(NRNPYTHON_PYMAJOR) -gt 2 ; then \
#		$(PY2TO3) -w $(DESTDIR)$(neuronhomepythondir) ; \
#	fi