summaryrefslogtreecommitdiff
path: root/Build/source/texk/makeindexk/win32.mak
blob: c2107ae2c452f484299e1bfcf4b6f77c088509fd (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
################################################################################
#
# Makefile  : MakeIndex(k)
# Author    : Fabrice Popineau <Fabrice.Popineau@supelec.fr>
# Platform  : Win32, Microsoft VC++ 6.0, depends upon fpTeX 0.5 sources
# Time-stamp: <01/11/19 11:36:09 popineau>
#
################################################################################
root_srcdir = ..\..
!ifdef DEVELOPMENT
INCLUDE=$(INCLUDE);$(root_srcdir)\texk.development
!else
INCLUDE=$(INCLUDE);$(root_srcdir)\texk
!endif

version = 2.13

USE_KPATHSEA = 1
USE_GNUW32 = 1

!include <msvc/common.mak>

DEFS = $(DEFS) -DHAVE_CONFIG_H

objects = \
	$(objdir)\genind.obj \
	$(objdir)\mkind.obj \
	$(objdir)\qsort.obj \
	$(objdir)\scanid.obj \
	$(objdir)\scanst.obj \
	$(objdir)\sortid.obj
program = $(objdir)\makeindex.exe
programs = $(program)

manfiles = makeindex.1

default all: $(objdir) $(programs)

$(program): $(objects) $(objdir)\makeindex.res $(kpathsealib)
	$(link) $(**) $(conlibs)

!include <msvc/config.mak>

!include <msvc/install.mak>

install:: install-exec install-man

!include <msvc/clean.mak>

!include <msvc/rdepend.mak>
!include "./depend.mak"

#
# Local Variables:
# mode: makefile
# End: