Skip to content

Commit

Permalink
updated Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
Aqua-Ye committed Sep 11, 2011
1 parent 261add2 commit 79d2c35
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Makefile
@@ -1,3 +1,5 @@
S = @ # silent

.PHONY: all clean run $(EXE)

OPA ?= opa
Expand All @@ -10,7 +12,7 @@ $(EXE): src/*.opa resources/*
$(OPA) --minimal-version $(MINIMAL_VERSION) src/main.opa -o $(EXE)

run: all
./$(EXE) || exit 0 ## prevent ugly make error 130 :) ##
$(S) ./$(EXE) || exit 0 ## prevent ugly make error 130 :) ##

clean:
rm -Rf *.exe _build _tracks *.log **/#*#

0 comments on commit 79d2c35

Please sign in to comment.