File: jade-generate.mak

package info (click to toggle)
openjade 1.4devel1-20.1
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 6,636 kB
  • sloc: cpp: 90,082; sh: 10,847; ansic: 2,365; lisp: 894; perl: 604; makefile: 443; sed: 93
file content (39 lines) | stat: -rw-r--r-- 839 bytes parent folder | download | duplicates (9)
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
# This is a Makefile for nmake that makes all the .cxx and .h files that
# are automatically generated.  It's too painful to do in the IDE.
# You'll need perl in your PATH to use this.

PERL=perl

GENSRCS=\
style\style_inst.cxx \
style\FlowObj_inst.cxx \
style\primitive_inst.cxx \
style\common_inst.cxx \
spgrove\grove_inst.cxx \
jade\HtmlFOTBuilder_inst.cxx \
jade\RtfFOTBuilder_inst.cxx \
jade\TeXFOTBuilder_inst.cxx \
jade\MifFOTBuilder_inst.cxx \
jade\TransformFOTBuilder_inst.cxx \
jade\JadeMessages.h \
jade\HtmlMessages.h \
jade\RtfMessages.h \
jade\TeXMessages.h \
jade\MifMessages.h \
style\DssslAppMessages.h \
style\InterpreterMessages.h

.SUFFIXES: .m4 .msg

all: $(GENSRCS)


.m4.cxx:
	del /f $@ 2> nul
	$(PERL) lib\instmac.pl $< >$@
	attrib +r $@

.msg.h:
	del /f $@ 2> nul
	$(PERL) -w msggen.pl -l xModule $<
	attrib +r $@