Skip to content

Commit

Permalink
Add @ to Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
fnogatz committed Sep 3, 2019
1 parent 516ad88 commit 75330ed
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
Expand Up @@ -8,18 +8,18 @@ SWIPL := swipl
all: test

version:
echo $(version)
@echo $(version)

check: test

install:
echo "(none)"
@echo "(none)"

test:
@$(SWIPL) -q -g 'main,halt(0)' -t 'halt(1)' -s test/test.pl

package: test
tar cvzf $(packfile) prolog test pack.pl README.md LICENSE
@tar cvzf $(packfile) prolog test pack.pl README.md LICENSE

release: test
hub release create -m v$(version) v$(version)
@hub release create -m v$(version) v$(version)

0 comments on commit 75330ed

Please sign in to comment.