Skip to content
This repository has been archived by the owner on Dec 5, 2018. It is now read-only.

Commit

Permalink
Temp fix for /dev/null Makefile stuff on Windows (we love you Pomax\!)
Browse files Browse the repository at this point in the history
  • Loading branch information
David Humphrey committed Jun 2, 2011
1 parent c3ae9a1 commit 3943a83
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ TEST ?= $(error Specify a test filename/dir in TEST when using check-test)
# Version number used in naming release files. Defaults to DEV_VERSION
VERSION ?= DEV_VERSION

QUIET := > /dev/null 2>&1
# TODO: get a Windows solution ... > /dev/null 2>&1
QUIET :=

EMPTY :=
SRC_DIR :=.
Expand Down Expand Up @@ -125,7 +126,8 @@ check-lint:

check-closure:
@@echo "\nRunning closure compiler on processing.js:"
@@$(call compile,$(PJS_SRC),/dev/null,$(EMPTY))
@@$(call compile,$(PJS_SRC),$(RELEASE_DIR)/closurecompile.out,$(EMPTY))
@@rm -f $(RELEASE_DIR)/closurecompile.out

check-parser:
$(RUNTESTS) -p
Expand Down

0 comments on commit 3943a83

Please sign in to comment.