mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-14 23:46:10 +00:00
9b7bcc6702
Closes PR #2574. Submitted by: Pedro Giffuni S.
29 lines
812 B
Plaintext
29 lines
812 B
Plaintext
# @(#)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>
|
|
|