File: make.include

package info (click to toggle)
xcrysden 1.5.53-1
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 8,528 kB
  • sloc: ansic: 37,997; tcl: 33,106; fortran: 6,409; sh: 2,706; makefile: 660; awk: 352; f90: 33; pascal: 30
file content (59 lines) | stat: -rw-r--r-- 1,475 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
# program for fetching external library sources from the web
# (the usage is: $(DOWNLOAD) url)

DOWNLOAD = wget


# Tcl/Tk version & download info

TCL_MAJOR_VERSION   = 8
TCL_MINOR_VERSION   = 5
TCL_RELEASE_SERIAL  = 11

TCL_VER2 = $(TCL_MAJOR_VERSION).$(TCL_MINOR_VERSION)
TCL_VER3 = $(TCL_MAJOR_VERSION).$(TCL_MINOR_VERSION).$(TCL_RELEASE_SERIAL)

TCL_TGZ = tcl$(TCL_VER3)-src.tar.gz
TK_TGZ  = tk$(TCL_VER3)-src.tar.gz
TCL_URL = http://prdownloads.sourceforge.net/tcl


# Mesa version & download info

MESA_VER = 7.10.3
MESA_TGZ = MesaLib-$(MESA_VER).tar.gz
MESA_URL = ftp://ftp.freedesktop.org/pub/mesa/$(MESA_VER)

# FFTW version & download info

FFTW_VER = 3.3
FFTW_TGZ = fftw-$(FFTW_VER).tar.gz
FFTW_URL =  http://www.fftw.org


# Meschach version & download info

MESCHACH_VER = 1.2
MESCHACH_TGZ = mesch12b.tar.gz
MESCHACH_URL = http://www.math.uiowa.edu/~dstewart/meschach


# Bwidget version

BWIDGET_VER = 1.9.5
BWIDGET_TGZ = bwidget-$(BWIDGET_VER).tar.gz
BWIDGET_URL = http://sourceforge.net/projects/tcllib/files/BWidget/$(BWIDGET_VER)




# ---don't-touch---------------------------------------------------------

TCL_DOWNLOAD      = $(TCL_URL)/$(TCL_TGZ)
TK_DOWNLOAD       = $(TCL_URL)/$(TK_TGZ)
MESA_DOWNLOAD     = $(MESA_URL)/$(MESA_TGZ)
FFTW_DOWNLOAD     = $(FFTW_URL)/$(FFTW_TGZ)
MESCHACH_DOWNLOAD = $(MESCHACH_URL)/$(MESCHACH_TGZ)
BWIDGET_DOWNLOAD  = $(BWIDGET_URL)/$(BWIDGET_TGZ)

# -----------------------------------------------------------------------