Showing
2 changed files
with
10 additions
and
2 deletions
@@ -82,7 +82,7 @@ test: test-pdf test-printing node_modules | @@ -82,7 +82,7 @@ test: test-pdf test-printing node_modules | ||
82 | cat pdf/lcov.info printing/lcov.info | node_modules/.bin/lcov-summary | 82 | cat pdf/lcov.info printing/lcov.info | node_modules/.bin/lcov-summary |
83 | 83 | ||
84 | clean: | 84 | clean: |
85 | - git clean -fdx -e .vscode | 85 | + git clean -fdx -e .vscode -e ref |
86 | 86 | ||
87 | publish-pdf: format clean | 87 | publish-pdf: format clean |
88 | find pdf -name pubspec.yaml -exec sed -i -e 's/^dependency_overrides:/_dependency_overrides:/g' '{}' ';' | 88 | find pdf -name pubspec.yaml -exec sed -i -e 's/^dependency_overrides:/_dependency_overrides:/g' '{}' ';' |
@@ -118,4 +118,10 @@ fix: get .dartfix | @@ -118,4 +118,10 @@ fix: get .dartfix | ||
118 | cd pdf; pub global run dartfix:fix --overwrite . | 118 | cd pdf; pub global run dartfix:fix --overwrite . |
119 | cd printing; pub global run dartfix:fix --overwrite . | 119 | cd printing; pub global run dartfix:fix --overwrite . |
120 | 120 | ||
121 | -.PHONY: test format format-dart format-clang clean publish-pdf publish-printing analyze | 121 | +ref: |
122 | + mkdir -p ref | ||
123 | + cd $@; curl -OL 'https://www.adobe.com/content/dam/acom/en/devnet/pdf/pdfs/PDF32000_2008.pdf' | ||
124 | + cd $@; curl -OL 'https://www.adobe.com/content/dam/acom/en/devnet/pdf/adobe_supplement_iso32000.pdf' | ||
125 | + cd $@; curl -OL 'https://www.adobe.com/content/dam/acom/en/devnet/acrobat/pdfs/pdf_reference_1-7.pdf' | ||
126 | + | ||
127 | +.PHONY: test format format-dart format-clang clean publish-pdf publish-printing analyze ref |
-
Please register or login to post a comment