From: Chris Jones Date: Thu, 7 Jul 2011 16:51:48 +0000 (-0400) Subject: allow custom rules to be defined in local.mk X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=eba0b18b19bb9951eb8fc4267a5670e616d1aed7;p=pdf.js.git allow custom rules to be defined in local.mk --- diff --git a/.gitignore b/.gitignore index 95de9fb..9e2d0f2 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,5 @@ +*~ pdf.pdf intelisa.pdf openweb_tm-PRINT.pdf +local.mk diff --git a/Makefile b/Makefile index c6971d0..9b2817f 100644 --- a/Makefile +++ b/Makefile @@ -3,6 +3,9 @@ BUILD_DIR := build DEFAULT_BROWSERS := test/resources/browser_manifests/browser_manifest.json DEFAULT_TESTS := test/test_manifest.json +# Let folks define custom rules for their clones. +-include local.mk + # JS files needed for pdf.js. # This list doesn't account for the 'worker' directory. PDF_JS_FILES = \ @@ -156,5 +159,5 @@ clean: help: @echo "Read the comments in the Makefile for guidance."; -.PHONY: all test browser-test font-test shell-test \ +.PHONY:: all test browser-test font-test shell-test \ shell-msg lint clean web compiler help server