Skip to content

Commit

Permalink
Updated Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
Stanislas Polu committed May 16, 2014
1 parent 9e63fc1 commit a3dd42e
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
EXO_BROWSER = "__DUMMY__"
EXO_BROWSER="__DUMMY__"
ARCH="x64"

clean:
rm -rf node_modules
Expand All @@ -8,7 +9,9 @@ install: clean
npm install

dist_linux: install
node dist/linux.js $(EXO_BROWSER)
node dist/linux.js $(ARCH) $(EXO_BROWSER)
dist_darwin: install
node dist/darwin.js $(ARCH) $(EXO_BROWSER)


.PHONY: clean install dist_linux
.PHONY: clean install dist_linux dist_darwin

0 comments on commit a3dd42e

Please sign in to comment.