diff options
author | Thomas Gellekum <tg@FreeBSD.org> | 2000-09-04 12:35:31 +0000 |
---|---|---|
committer | Thomas Gellekum <tg@FreeBSD.org> | 2000-09-04 12:35:31 +0000 |
commit | d2de905d16fba79ad75f3b053edd24d2c64bb56a (patch) | |
tree | 584543f87ca29a253b973d1a89e8ecf178f098c5 /math/numpy/files/patch-Makefile | |
parent | Several clenups: (diff) |
Upgrade to 16.0.
Some parts (patch-Makefile, Makefile mods) taken from a patch set
submitted by sobomax.
Diffstat (limited to 'math/numpy/files/patch-Makefile')
-rw-r--r-- | math/numpy/files/patch-Makefile | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/math/numpy/files/patch-Makefile b/math/numpy/files/patch-Makefile new file mode 100644 index 000000000000..6512ba0c12ad --- /dev/null +++ b/math/numpy/files/patch-Makefile @@ -0,0 +1,25 @@ +--- Makefile 2000/08/31 17:23:34 1.1 ++++ Makefile 2000/08/31 17:35:38 +@@ -5,8 +5,20 @@ + @echo "Currently that is:" + @which python + +-all: MA RNG FFT ++all:: main MA RNG FFT ++ ++main: ++ python setup.py build + + MA RNG FFT: +- (cd Packages/$@; python setup.py install) ++ (cd Packages/$@; mkdir -p Include ; ln -sf ../../../Include Include/Numeric; python setup.py build) ++ ++install:: main_install MA_install RNG_install FFT_install ++ ++main_install: ++ python setup.py install ++ ++MA_install RNG_install FFT_install: ++ (cd Packages/${@:S/_install//}; python setup.py install) ++ + |