diff options
author | Thomas Gellekum <tg@FreeBSD.org> | 1997-02-14 08:53:05 +0000 |
---|---|---|
committer | Thomas Gellekum <tg@FreeBSD.org> | 1997-02-14 08:53:05 +0000 |
commit | 9b7bcc6702e704ac87235a642dd536375fc9beed (patch) | |
tree | 58269260bd8ca7d22e1639105a812eb1c3c365f5 /math/fftpack/files | |
parent | eaed37dd4946a2e09da317d00a293716a8e3d6e6 (diff) |
Notes
Diffstat (limited to 'math/fftpack/files')
-rw-r--r-- | math/fftpack/files/makefile.lib | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/math/fftpack/files/makefile.lib b/math/fftpack/files/makefile.lib new file mode 100644 index 000000000000..616db36d0a42 --- /dev/null +++ b/math/fftpack/files/makefile.lib @@ -0,0 +1,28 @@ +# @(#)Makefile 5.7 (Berkeley) 6/27/91 + +# FFTPACK sources +LIBDIR= $(PREFIX)/lib +NOPROFILE= no + +SHLIB_MAJOR= 1 +SHLIB_MINOR= 0 +LIB=fftpack +SRCS = cfftb.f cfftb1.f cfftf.f cfftf1.f cffti.f cffti1.f cosqb.f \ + cosqb1.f cosqf.f cosqf1.f cosqi.f cost.f costi.f ezfft1.f \ + ezfftb.f ezfftf.f ezffti.f passb.f passb2.f passb3.f passb4.f \ + passb5.f passf.f passf2.f passf3.f passf4.f passf5.f radb2.f \ + radb3.f radb4.f radb5.f radbg.f radf2.f radf3.f radf4.f \ + radf5.f radfg.f rfftb.f rfftb1.f rfftf.f rfftf1.f rffti.f \ + rffti1.f sinqb.f sinqf.f sinqi.f sint.f sint1.f sinti.f + +CLEANFILES+= *.c + +test: test.o + f77 test.o -l$(LIB) + time a.out + +package: install pkg/+DESC pkg/+ONELINE pkg/+PLIST + pkg_create -c pkg/+ONELINE -d pkg/+DESC -f pkg/+PLIST fftpack_bin + +.include <bsd.lib.mk> + |