~ubuntu-branches/ubuntu/jaunty/texlive-bin/jaunty-security

« back to all changes in this revision

Viewing changes to build/source/texk/lacheck/win32.mak

  • Committer: Bazaar Package Importer
  • Author(s): Norbert Preining
  • Date: 2008-06-26 23:14:59 UTC
  • mfrom: (2.1.30 intrepid)
  • Revision ID: james.westby@ubuntu.com-20080626231459-y02rjsrgtafu83yr
Tags: 2007.dfsg.2-3
add missing source roadmap.fig of roadmap.eps in fontinst documentation
(Closes: #482915) (urgency medium due to RC bug)
(new patch add-missing-fontinst-source)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
################################################################################
 
2
#
 
3
# Makefile  : Lacheck
 
4
# Author    : Fabrice Popineau <Fabrice.Popineau@supelec.fr>
 
5
# Platform  : Win32, Microsoft VC++ 6.0, depends upon fpTeX 0.5 sources
 
6
# Time-stamp: <03/06/29 11:22:39 popineau>
 
7
#
 
8
################################################################################
 
9
root_srcdir = ..\..
 
10
!ifdef DEVELOPMENT
 
11
INCLUDE=$(INCLUDE);$(root_srcdir)\texk.development
 
12
!else
 
13
INCLUDE=$(INCLUDE);$(root_srcdir)\texk
 
14
!endif
 
15
 
 
16
REV = 1.25
 
17
version = 1.0
 
18
 
 
19
USE_GNUW32 = 1
 
20
 
 
21
!include <msvc/common.mak>
 
22
 
 
23
# LEX = flex -8
 
24
LEXLIB = 
 
25
LEX_OUTPUT_ROOT = lex_yy
 
26
 
 
27
prog_cflags = -DNeedFunctionPrototypes
 
28
 
 
29
program = $(objdir)\lacheck.exe
 
30
objects = $(objdir)\$(LEX_OUTPUT_ROOT).obj
 
31
 
 
32
manfiles = lacheck.1
 
33
 
 
34
programs = $(program)
 
35
 
 
36
default: all
 
37
 
 
38
all: $(objdir) $(programs)
 
39
 
 
40
$(program): $(objects)  $(gnuw32lib)
 
41
        $(link) $(**) $(conlibs)
 
42
 
 
43
!include <msvc/config.mak>
 
44
 
 
45
!include <msvc/install.mak>
 
46
 
 
47
install:: install-exec install-man
 
48
 
 
49
lacheck.1:      lacheck.man
 
50
        -$(sed) -e "s!%%LACHECKREV%%!Release $(REV)!" $(srcdir)/lacheck.man | \
 
51
                $(sed) -e "s!%%LACHECKPATH%%!$(bindir:\=/)/lacheck!" > $@ 
 
52
 
 
53
!include <msvc/clean.mak>
 
54
 
 
55
clean::
 
56
        -@$(del) $(LEX_OUTPUT_ROOT).c 
 
57
 
 
58
$(LEX_OUTPUT_ROOT).c: lacheck.lex
 
59
        $(lex) -t lacheck.lex | $(sed) "/^extern int isatty YY/d" > $(LEX_OUTPUT_ROOT).c
 
60
 
 
61
$(objdir)\$(LEX_OUTPUT_ROOT).obj: $(LEX_OUTPUT_ROOT).c
 
62
 
 
63
!include <msvc/rdepend.mak>
 
64
!include "./depend.mak"
 
65
 
 
66
#
 
67
# Local Variables:
 
68
# mode: makefile
 
69
# End:
 
70