diff options
author | Lars Langhans <lla@openoffice.org> | 2010-05-18 13:29:35 +0200 |
---|---|---|
committer | Lars Langhans <lla@openoffice.org> | 2010-05-18 13:29:35 +0200 |
commit | f0d2b747a95de08e6300f9eee4b9105ab745816f (patch) | |
tree | d7b60fd3642a326e40ab1864e50c92559d4388aa /testgraphical | |
parent | cc46de092c3b321abaa523309ea95216c4c9ac35 (diff) |
gfxcmp02:#159601# verbose makefile
Diffstat (limited to 'testgraphical')
-rw-r--r-- | testgraphical/source/makefile.mk | 20 |
1 files changed, 18 insertions, 2 deletions
diff --git a/testgraphical/source/makefile.mk b/testgraphical/source/makefile.mk index 3cda91df4986..619fd7786f93 100644 --- a/testgraphical/source/makefile.mk +++ b/testgraphical/source/makefile.mk @@ -70,23 +70,39 @@ ALLTAR: selftest # $(PRJ)$/util$/makefile.pmk contains ALLTAR stuff - +# selftest is the default run through at the moment and use pdf export to create output. +# dmake selftest: $(PERL) $(PERLDEBUG) compare.pl -creatortype pdf $(PREPAREONLY) -pool singletest -document eis-test.odt $(P_SHOW) +# selftest_ps is like the default run through but use always postscript print out +# dmake selftest_ps +selftest_ps: + $(PERL) $(PERLDEBUG) compare.pl -creatortype ps $(PREPAREONLY) -pool singletest -document eis-test.odt $(P_SHOW) + # # # The follows are demonstration targets, DO NOT DELETE # # +# dmake demo SHOW=1 demo: $(PERL) $(PERLDEBUG) compare.pl $(CREATORTYPE) $(PREPAREONLY) -pool $@ $(P_SHOW) -# this test will most the time fail. +# failtest is a demonstration of a failure, with SHOW=1 it should open a java windows which shows 3 pictures, +# the current document, the reference document and the difference between both. +# dmake failtest SHOW=1 +# dmake failtest PREPARE=1 +# This test will most the time fail, it is just a demonstration. failtest: $(PERL) $(PERLDEBUG) compare.pl $(CREATORTYPE) $(PREPAREONLY) -force -pool demo -document CurrentTime.ods $(P_SHOW) +# manual runs through all documents found in document-pool +# dmake manual +# dmake manual PDF=1 SHOW=1 +# dmake manual PREPARE=1 PDF=1 +# should help to create a lot of references at one time. manual: $(PERL) $(PERLDEBUG) compare.pl $(CREATORTYPE) $(PREPAREONLY) -force $(P_SHOW) |