blob: feb2bda421560470f60b0636a965f2f261a62b86 (
plain)
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
|
################################################################################
#
# Makefile : fpTeX libraries
# Author : Fabrice Popineau <Fabrice.Popineau@supelec.fr>
# Platform : Win32, Microsoft VC++ 6.0, depends upon fpTeX 0.5 sources
# Time-stamp: <03/10/12 18:50:34 popineau>
#
################################################################################
root_srcdir = ..
!ifdef DEVELOPMENT
INCLUDE=$(INCLUDE);$(root_srcdir)\texk.development
!else
INCLUDE=$(INCLUDE);$(root_srcdir)\texk
!endif
!include <msvc/common.mak>
prereqfiles = \
"$(MSDEV)\Visual Studio .NET Enterprise Architect 2003 - English\MSVCP71.dll" \
"$(MSDEV)\Visual Studio .NET Enterprise Architect 2003 - English\MSVCR71.dll" \
"c:\Windows\System32\MFC71.dll" \
c:\Local\Perl\bin\perl58.dll \
# $(jpegdll) \
# $(pngdll) \
# $(zlibdll) \
# $(bzip2dll)
# Package subdirectories.
subdirs = \
libgnuw32 \
libgsw32 \
regex$(regexver) \
zlib$(zlibver) \
libpng$(pngver) \
jpeg$(jpgver) \
# libtiff$(tiffver) \
xpdf$(xpdfver) \
freetype2 \
libttf$(ttfver) \
# gifreader$(gifver) \
# curl \
md5 \
expat$(expatver) \
geturl$(geturlver) \
# unzip \
# T1$(t1ver)
!include <msvc/subdirs.mak>
install:: prerequisites
prerequisites: $(prereqfiles)
for %%f in ($(prereqfiles)) do $(copy) %%f $(bindir)
!include <msvc/clean.mak>
# Local Variables:
# mode: Makefile
# End:
|