diff options
Diffstat (limited to 'jquery/Makefile')
-rw-r--r-- | jquery/Makefile | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/jquery/Makefile b/jquery/Makefile index 83a302b..018a3de 100644 --- a/jquery/Makefile +++ b/jquery/Makefile @@ -2,6 +2,7 @@ JQUERY_VERSION = 1.7.1 JQUERY_UI_VERSION = 1.8.18 HASHCHANGE_VERSION = 1.3 SCROLL_VERSION = 1.4.2 +POWERTIP_VERSION = 1.2.0 MINIFIER = /usr/local/bin/yuicompressor-2.4.7 SCRIPTS = jquery-$(JQUERY_VERSION).js \ jquery.ui-$(JQUERY_UI_VERSION).core.js \ @@ -9,8 +10,10 @@ SCRIPTS = jquery-$(JQUERY_VERSION).js \ jquery.ui-$(JQUERY_UI_VERSION).mouse.js \ jquery.ui-$(JQUERY_UI_VERSION).resizable.js \ jquery.ba-$(HASHCHANGE_VERSION)-hashchange.js \ - jquery.scrollTo-$(SCROLL_VERSION).js -RESULTS = jquery_p1.js jquery_p2.js jquery_p3.js jquery_ui.js jquery_fx.js + jquery.scrollTo-$(SCROLL_VERSION).js \ + jquery.powertip-$(POWERTIP_VERSION).js +RESULTS = jquery_p1.js jquery_p2.js jquery_p3.js \ + jquery_ui.js jquery_fx.js jquery_pt.js SCRIPTS_MIN = $(SCRIPTS:%.js=%-min.js) @@ -26,6 +29,9 @@ jquery_ui.js: scripts jquery.ui-$(JQUERY_UI_VERSION).resizable-min.js \ jquery.ba-$(HASHCHANGE_VERSION)-hashchange-min.js > jquery_ui.js +jquery_pt.js: scripts + cat jquery.powertip-$(POWERTIP_VERSION)-min.js > jquery_pt.js + jquery_fx.js: scripts cat jquery.scrollTo-$(SCROLL_VERSION)-min.js > jquery_fx.js |