~ubuntu-branches/ubuntu/jaunty/luatex/jaunty

« back to all changes in this revision

Viewing changes to src/win32.mak

  • Committer: Bazaar Package Importer
  • Author(s): Norbert Preining
  • Date: 2007-09-24 12:56:11 UTC
  • Revision ID: james.westby@ubuntu.com-20070924125611-a8ge689azbptxvla
Tags: upstream-0.11.2
ImportĀ upstreamĀ versionĀ 0.11.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#
 
2
# Top Level Makefile for TeXLive for Win32
 
3
#
 
4
root_srcdir = .
 
5
INCLUDE=$(INCLUDE);$(root_srcdir)\texk
 
6
 
 
7
USE_JPEG = 1
 
8
USE_PNG = 1
 
9
USE_ZLIB = 1
 
10
USE_BZIP2 = 1
 
11
 
 
12
!include <msvc/common.mak>
 
13
 
 
14
!if defined(XEMTEX)
 
15
subdirs = xemacs gstools graphics perl
 
16
 
 
17
!elseif defined(NETPBM)
 
18
 
 
19
subdirs = graphics
 
20
 
 
21
!else
 
22
 
 
23
# Kpathsea needs to be build before 
 
24
!ifdef DEVELOPMENT
 
25
subdirs = libs    \
 
26
          utils   \
 
27
          graphics \
 
28
          texk.development
 
29
!else
 
30
subdirs = libs          \
 
31
          utils         \
 
32
          graphics      \
 
33
          texk
 
34
!endif
 
35
 
 
36
!endif
 
37
 
 
38
!ifdef XEMTEX
 
39
install:: $(prefix) 
 
40
 
 
41
$(prefix):
 
42
        -if not exist $(prefix) $(mkdir) $(prefix)
 
43
!endif
 
44
 
 
45
!include <msvc/subdirs.mak>
 
46
!include <msvc/clean.mak>
 
47
 
 
48
#
 
49
# Local Variables:
 
50
# mode: makefile
 
51
# End: