Skip to content

Commit

Permalink
Removed jquery elements from make file. Updated to output a combined …
Browse files Browse the repository at this point in the history
…and minified version of the two files.
  • Loading branch information
Jarvis Badgley authored and Jarvis Badgley committed Sep 14, 2010
1 parent 4206474 commit c971475
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@

JSFILES=jquery-wmd-plugin.js wmd.js showdown.js
JSFILES=wmd.js showdown.js

all: jquery.wmd.js jquery.wmd.min.js
all: wmd.combined.js wmd.combined.min.js

jquery.wmd.js: $(JSFILES)
wmd.combined.js: $(JSFILES)
cat $(JSFILES) > $@

jquery.wmd.min.js: $(JSFILES)
wmd.combined.min.js: $(JSFILES)
cat $(JSFILES) | python jsmin.py > $@

0 comments on commit c971475

Please sign in to comment.