File: Makefile

package info (click to toggle)
python-scipy 0.14.0-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 52,228 kB
  • ctags: 63,719
  • sloc: python: 112,726; fortran: 88,685; cpp: 86,979; ansic: 85,860; makefile: 530; sh: 236
file content (31 lines) | stat: -rw-r--r-- 763 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
LIB = cephes
ROOTDIR=/usr/local
BUILDIR=$(ROOTDIR)
CCC=gcc
CC = $(CCC) 
OPT=-O2 -march=pentiumpro
CFLAGS=$(OPT)

OBJS = airy.o bdtr.o beta.o \
btdtr.o cbrt.o chbevl.o chdtr.o const.o \
dawsn.o ellie.o ellik.o ellpe.o ellpj.o ellpk.o \
exp10.o exp2.o expn.o fabs.o fdtr.o \
fresnl.o gamma.o gdtr.o hyp2f1.o hyperg.o i0.o i1.o igami.o \
incbet.o incbi.o igam.o iv.o j0.o j1.o jn.o jv.o k0.o k1.o \
kn.o kolmogorov.o nbdtr.o ndtr.o ndtri.o pdtr.o \
polevl.o polmisc.o polyn.o psi.o rgamma.o round.o \
shichi.o sici.o sindg.o spence.o stdtr.o struve.o \
tandg.o unity.o yn.o zeta.o zetac.o \
setprec.o mtherr.o


lib$(LIB).a:	$(OBJS)
	ar ru lib$(LIB).a $?
	ranlib lib$(LIB).a

install:	lib$(LIB).a
	install -c lib$(LIB).a $(BUILDIR)/lib

clean:
	rm -f *.o *.so *.lo