summaryrefslogtreecommitdiff
path: root/Build/source/texk/msvc/config.mak
blob: 03e41cf8d1970616e5a53bab2ac384139d6f9784 (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
################################################################################
#
# Makefile  : Coonfig, rules to build configuration files
#           : Perl required, relies on Perl script
# Author    : Fabrice Popineau <Fabrice.Popineau@supelec.fr>
# Platform  : Win32, Microsoft VC++ 6.0, depends upon fpTeX 0.5 sources
# Time-stamp: <02/07/18 10:10:28 popineau>
#
################################################################################

!if exist(config.h.in)

config.h: config.h.in
	$(perl) $(win32perldir)\conf-cauto.pl config.h.in $@

!else if exist(config.hin)

config.h: config.hin
	$(perl) $(win32perldir)\conf-cauto.pl config.hin $@

!else if exist(config.in)

config.h: config.in
	$(perl) $(win32perldir)\conf-cauto.pl config.in $@

!endif

configure:: config.h

!if exist(c-auto.in)

c-auto.h: c-auto.in
	$(perl) $(win32perldir)\conf-cauto.pl c-auto.in $@

configure:: c-auto.h

!endif

!if defined(USE_KPATHSEA) && !defined(MAKE_KPATHSEA)
$(kpathseadir)\c-auto.h: $(kpathseadir)\c-auto.in
	$(perl) $(win32perldir)\conf-cauto.pl $(kpathseadir)\c-auto.in $@
!endif
#
# Add version information
#
!include <msvc/version.mak>

#
# Add libraries build rules
#
!include <msvc/libsrul.mak>

# End of config.mk.
#
# Local Variables:
# mode: Makefile
# End: